-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
50 lines (41 loc) · 750 Bytes
/
.gitconfig
File metadata and controls
50 lines (41 loc) · 750 Bytes
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
#[url "[email protected]:"]
# pushInsteadOf = git://github.com/
# pushInsteadOf = https://github.com/
#
#[credential]
# helper = wincred
[user]
name = rbtnn
[http]
sslverify = false
[core]
autocrlf = false
quotepath = false
editor = vim -u NONE --noplugin
excludesfile = ~/.gitignore.global
[alias]
save=stash save
pop=stash pop
br=branch
ci=commit
co=checkout
ls=ls-files
lg=log -10 --pretty=\"format:%C(yellow)%h %C(green)%cd %C(reset)%s\" --date=iso
po=push -u origin
st=status
fu=fetch upstream
[color]
diff = true
status = true
branch = true
interactive = false
[help]
format = man
[fetch]
prune = true
[include]
path = ~/.gitconfig.local
[pager]
log = false
diff = false