-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitconfig
43 lines (43 loc) · 937 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
[user]
email = [email protected]
name = kelvinst
[alias]
co = checkout
lg = log --all --graph --decorate --oneline --abbrev-commit
cm = commit
ac = !git add -A && git commit
aca = !git add -A && git commit --amend
acapf = !git add -A && git commit --amend -C HEAD~1 && git push -f
ace = !git add -A && git commit --allow-empty
r = !git pull --commit && git push
s = status -s
st = status -sb
tags = tag -l
branches = branch -a
remotes = remote -v
d = diff
dt = difftool
pro = pull-request -o
[push]
default = simple
[filter "media"]
clean = git-media-clean %f
smudge = git-media-smudge %f
[core]
editor = nvim
excludesfile = ~/.global_gitignore
[diff]
tool = nvim -d
[merge]
tool = nvim -d
[difftool]
prompt = false
[filter "lfs"]
clean = git-lfs clean %f
smudge = git-lfs smudge %f
required = true
[gitsh]
gitCommand = hub
defaultCommand = s
[pull]
rebase = false