-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
57 lines (45 loc) · 835 Bytes
/
.gitconfig
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
[user]
name =
[url "https://"]
insteadOf = git://
[core]
editor = "code -w"
excludesfile = ~/.gitignore
[alias]
co = checkout
cm = commit
st = status
ps = push
pl = pull
br = branch
dt = difftool
stash-all = stash save --include-untracked
undo = reset --soft HEAD^
[github]
user =
[color]
# Use colors in Git commands that are capable of colored output when outputting to the terminal
ui = auto
[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
[branch]
autosetupmerge = true
[push]
default = simple
followTags = true
[rerere]
enabled = true
autoupdate = true
[url "https://github.com/"]
insteadOf = git://github.com/