-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitconfig
More file actions
59 lines (59 loc) · 1.37 KB
/
Copy path.gitconfig
File metadata and controls
59 lines (59 loc) · 1.37 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
[alias]
ap = add -p
br = branch
co = checkout
ci = commit
df = diff
dfc = diff --cached
fap = fetch --all --prune
lg = log --find-copies --graph --abbrev --relative-date --topo-order --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%Creset'
lga = log --find-copies --graph --abbrev --relative-date --topo-order --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%Creset' --all
mf = merge --ff-only
mnf = merge --no-ff
mt = mergetool -t vimdiff -y
pf = push --force-with-lease
rb = rebase
rba = rebase --abort
rbc = rebase --continue
rbi = rebase -i
sb = show-branch --topo-order --sha1-name
st = status -b -s -uno
stu = status -b -s -uall
stat = show --stat --pretty=fuller
statc = diff --cached --stat --pretty=fuller
tags = tag -ln
[am]
keepcr = true
[blame]
ignoreRevsFile = .git-blame-ignore-revs
[branch]
autosetupmerge = always
[color]
ui = auto
[commit]
verbose = true
gpgsign = true
[core]
autocrlf = false
editor = vi
excludesfile = ~/.gitignore
quotepath = false
[diff]
renames = true
[gui]
encoding = utf-8
[include]
path = ~/.gitconfig.local
[init]
defaultBranch = main
[mergetool]
keepBackup = false
keepTemporaries = false
[push]
default = simple
[rerere]
enabled = true
[url "ssh://github/"]
pushInsteadOf = github:
[url "ssh://github/"]
insteadOf = https://github.com/