-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
45 lines (45 loc) · 1.09 KB
/
Copy path.gitconfig
File metadata and controls
45 lines (45 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[core]
legacyheaders = false
quotepath = false
pager = less -+$LESS -FRX
autocrlf = false #true false input
safecrlf = true # true false warn
excludesfile = ~/.gitignore_global
attributesfile = ~/.gitattributes
whitespace = space-before-tab,-indent-with-non-tab,trailing-space
editor = vi
[user]
name = nil
email = your@email.com
# signingkey = public gpg key
#[commit]
# gpgsign = true
[diff]
tool = diff
[alias]
tags = tag -l
branches = branch -a
remotes = remote -v
aliases = config --get-regexp alias
ll = log --graph --oneline --decorate --abbrev-commit --pretty=tformat:'%C(auto)%h%Creset -%C(auto)%d%Creset %s %C(auto)(%cr, %an, %G?)%Creset'
logs = log --pretty=fuller --stat --decorate
sp = submodule update --recursive --init
sf = submodule foreach git submodule update --recursive --init
[color]
ui = auto
[init]
defaultBranch = master
[push]
default = simple
followTags = true
[pull]
default = simple
rebase = false
[gist]
private = no
browse = no
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true