-
Notifications
You must be signed in to change notification settings - Fork 3
/
.gitconfig
53 lines (48 loc) · 1.5 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
53
[user]
email = azer@kodfabrik.com
name = E.Azer Koçulu
[alias]
t-server = utf8
pb = pull
p = pull --rebase origin master
u = push origin master
ub = push
st = status
ci = commit
co = checkout
br = branch
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
fix = commit --amend -C HEAD
rv = remote --verbose
r = remote
staged = diff --cached
unstage = reset HEAD
undo-commit = reset --soft HEAD^
reset-master = reset --hard origin/master
reset-staging = reset --hard origin/staging
tree = log --graph --pretty=format:'%Cred%h%Creset %C(yellow)%an%d%Creset %s %Cgreen(%cr)%Creset' --date=relative
[merge]
tool = opendiff
[branch]
autosetuprebase = always
[color]
ui = auto
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red bold
new = green bold
[color "status"]
added = yellow
changed = green
untracked = cyan
[github]
user = azer
[core]
editor = /usr/bin/vim
[help]
autocorrect = 1