-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
60 lines (59 loc) · 1.33 KB
/
.gitconfig
File metadata and controls
60 lines (59 loc) · 1.33 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[alias]
mg=merge --squash
la=log --all --graph --decorate
ls=log --graph --decorate
stat=status -uno
co=checkout
ci=commit
smg=cherry-pick -n
br=branch
md=commit --amend
dt=difftool
mt=mergetool
cf=config
line=log --oneline
latest=for-each-ref --sort=-committerdate --format='%(committerdate:short) %(refname:short) [%(committername)]'
lg=log --pretty=format:\"%C(yellow)%h %C(blue)%ad %C(red)%d %C(reset)%s %C(green)[%cn]\" --decorate --date=short
hist=log --pretty=format:\"%C(yellow)%h %C(red)%d %C(reset)%s %C(green)[%an] %C(blue)%ad\" --topo-order --graph --date=short
type=cat-file -t
dump=cat-file -p
gp=grep -n
[color]
status = auto
branch = auto
diff = auto
ui = true
pager = true
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red bold
new = green bold
[color "status"]
added = yellow
changed = green
untracked = cyan
[diff]
tool=vimdiff
[http]
sslverify = false
[core]
autocrlf = false
filemode = false
safecrlf = false
editor = vim
whitespace = cr-at-eol
#[commit]
# template = ~/Documents/gitconfig/git-commit-template
[push]
default = matching
[core]
gitproxy = gitproxy
[http]
proxy = http://192.168.5.107:808
[https]
proxy = https://192.168.5.107:808