-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
47 lines (47 loc) · 990 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
[init]
templateDir = ~/.git_template
[color.status]
branch = magenta
untracked = cyan
changed = green
added = yellow
[status]
color = true
short = true
branch = false
[diff]
color = true
word-diff = true
[user]
name = Tomas Varneckas
email = t.varneckas@gmail.com
[alias]
standup = log --since '1 day ago' --oneline --author tomas
st = status
co = checkout
ci = commit
br = branch
staged = diff --staged
diffwords = diff --color-words
amend = commit --amend
pulls = browse -- pulls
issues = browse -- issues
pop = stash pop
lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%C(bold blue)<%an>%Creset' --abbrev-commit
continue = rebase --continue
merged = branch --merged
abort = rebase --abort
reset-1 = reset HEAD~1
wip = commit -am \"WIP\"
stg = diff --staged
[push]
default = current
[core]
excludesfile = ~/.gitignore
[color]
branch = true
ui = true
[merge]
conflictstyle = diff3
[rebase]
autosquash = true