-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
52 lines (52 loc) · 1.55 KB
/
.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
# This is Git's per-user configuration file.
[user]
name = sanghin
[color]
ui = true
branch = auto
diff = auto
status = auto
interactive = auto
[format]
pretty = oneline
[core]
autocrlf = false
editor = code --wait
ignorecase = false
[alias]
stash-unapply = !git stash show -p | git apply -R
st = status
stp = status --porcelain
ci = commit
br = branch
co = "!f() { git fetch && git checkout $1; }; f"
rz = reset --hard HEAD
pullr = pull --rebase
unstage = reset HEAD
lol = log --graph --decorate --pretty=oneline --abbrev-commit
lola = log --graph --decorate --pretty=oneline --abbrev-commit --all
lpush = "!git --no-pager log origin/$(git currentbranch)..HEAD --oneline"
lpull = "!git --no-pager log HEAD..origin/$(git currentbranch) --oneline"
whatsnew = "!git diff origin/$(git currentbranch)...HEAD"
whatscoming = "!git diff HEAD...origin/$(git currentbranch)"
currentbranch = "!git branch | grep \"^\\*\" | cut -d \" \" -f 2"
dsf = "!git diff --color $@ | diff-so-fancy"
pr = pull --rebase
sc = config --list --show-origin
#rmb = branch --merged | egrep -v "(^\*|master|dev)" | xargs git branch -d
[push]
default = current
[pull]
rebase=true
[remote "origin"]
prune=true
[diff]
tool = default-difftool
[difftool "default-difftool"]
cmd = code --wait --diff $LOCAL $REMOTE
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true