-
Notifications
You must be signed in to change notification settings - Fork 0
/
dot_gitconfig
54 lines (54 loc) · 1.15 KB
/
dot_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
[user]
name = Balaji Sivaraman
email = [email protected]
signingkey = 48AEBD08561BC452
[alias]
st = status
ci = commit --verbose
co = checkout
di = diff
dc = diff --cached
amend = commit --amend
aa = add --all
ff = merge --ff-only
pullff = pull --ff-only
pullr = pull --rebase
noff = merge --no-ff
fa = fetch --all
pom = push origin master
b = branch
ds = diff --stat=160,120
dh1 = diff HEAD~1
head = !git r -1
h = !git head
hp = "!. ~/.githelpers && show_git_head"
r = !GIT_NO_PAGER=1 git l -30
ra = !git r --all
l = "!. ~/.githelpers && pretty_git_log"
la = !git l --all
ls-files-root = ! git ls-files
[merge]
tool = kdiff3
[diff]
guitool = kdiff3
[difftool "kdiff3"]
path = /usr/bin/kdiff3
[core]
excludesfile = ~/.gitignore_global
pager = gitdiffer
[commit]
gpgsign = false
[credential]
helper = cache --timeout=3600
[interactive]
diffFilter = gitdiffer-filter
[remote "origin"]
prune = true
[remote "upstream"]
prune = true
[pull]
ff = only
[init]
defaultBranch = main
[include]
path = ~/.gitconfig.client