-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitconfig
44 lines (44 loc) · 1.25 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
[user]
name = Louis Howe
email = louismhowe@users.noreply.github.com
[color]
ui = auto
[core]
editor = vim
[diff]
tool = kdiff3
mnemonicprefix = true
algorithm = patience
[merge]
tool = kdiff3
[push]
default = simple
[alias]
st = status -sb
sti = status -sb --ignored
sh = show --stat --oneline
lsf = ls-files
br = branch -vv
bra = branch -avv
d = diff
dc = diff --cached
dt = difftool -d --no-symlinks
dtc = difftool -d --cached --no-symlinks
mt = mergetool
mm = merge --no-commit --no-ff
l = log --decorate --pretty=oneline --abbrev-commit --tags
lp = log --decorate --pretty=oneline --abbrev-commit --tags --patch
ls = log --decorate --pretty=oneline --abbrev-commit --tags -stat
la = log --decorate --pretty=oneline --abbrev-commit --all
las = log --decorate --pretty=oneline --abbrev-commit --all --stat
lg = log --graph --decorate --full-history --pretty=oneline --abbrev-commit
lga = log --graph --decorate --full-history --pretty=oneline --abbrev-commit --all
lgp = log --graph --patch
lgs = log --graph --stat
lgas = log --graph --decorate --pretty=oneline --abbrev-commit --all --stat
rc = rebase --continue
rs = rebase --skip
cp = cherry-pick
r = remote -v
rs = remote show
rsn = remote show -n