-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
49 lines (49 loc) · 1004 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
[user]
name = Piotr Staniów
email = staniowp@gmail.com
[push]
default = current
[pull]
rebase = true
[core]
autocrlf = false
excludesfile = ~/.gitignore
hooksPath = ~/.git_hooks
[alias]
co = checkout
nbr = checkout -b
ci = commit
cia = commit --amend
cinam = commit -nam
st = status
sh = push
shu = push -u
pu = pull
purr = pull --rebase
br = branch
me = merge
mea = merge --abort
fe = fetch
pi = cherry-pick
pick = cherry-pick
bi = bisect
rh = reset --hard
rhe = reset HEAD
ap = add -p
rb = rebase
rbi = rebase --interactive
rbc = rebase --continue
rba = rebase --abort
ss = stash
sa = stash apply
hist = log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short
type = cat-file -t
dump = cat-file -p\n
re = remote -v
[pager]
status = false
branch = false
[branch "master"]
pushRemote = no_push
[include]
path = ~/.gitconfig.local