-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgitconfig
More file actions
48 lines (37 loc) · 774 Bytes
/
gitconfig
File metadata and controls
48 lines (37 loc) · 774 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
[alias]
co = checkout
br = branch
st = status
df = diff
ds = diff --staged
lg = log --pretty=format:'%C(yellow)%h%C(auto)%d%Creset %s %Cblue%cn (%ar)' --graph --all
ci = commit --verbose
[commit]
verbose = true
[color]
ui = true
[color "branch"]
current = green reverse
local = green
remote = yellow
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red bold
new = green bold
[color "status"]
added = yellow
changed = green
untracked = red
[diff]
tool = nvimdiff
[difftool "nvimdiff"]
cmd = "nvim -d \"$LOCAL\" \"$REMOTE\""
[difftool]
prompt = false
# Abort all diffs with :cq
trustExitCode = true
[pull]
ff = only
[include]
path = .gitconfig.local