-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
51 lines (47 loc) · 999 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
[alias]
s = status -sb
cmt = commit -v
cmsg = commit -m
pl = pull --rebase
p = rebase -i @{u}
co = checkout
dc = diff --cached
cp = cherry-pick
ap = add -p
dog = log --decorate --oneline --graph
adog = log --all --decorate --oneline --graph
filelog = log -u
la = "!git config -l | grep alias | cut -c 7-"
[user]
email = [email protected]
name = Salmanul Farzy
signingkey = 7325421E81414002
signingkey = 83CE707DA1CDC9D2
signingkey = 6C326B61B424A736
signingkey = 7D2F0E65A9330E8D
[push]
default = simple
[status]
showUntrackedFiles = all
[core]
autocrlf = input
excludesfile = ~/.gitignore
[commit]
gpgsign = true
cleanup = strip
[pager]
branch = false
[mergetool]
keepBackup = true
[color "branch"]
curent = green reverse
local = green
remote = yellow
[color "status"]
added = yellow
changed = green
untracked = blue
[init]
defaultBranch = main
[credential]
helper = cache --timeout=600