-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
executable file
·69 lines (60 loc) · 1.2 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[user]
name = Chetna Chaudhari
email = [email protected]
[creadential]
helper = osxkeychain
[alias]
co = checkout
ci = commit
st = status
br = branch
sb = show-branch
df = diff --ignore-space-change
aa = add -A
ll = log --decorate --graph --abbrev-commit # --oneline
lg = log --graph --pretty=format:'%Cred%h%Creset - %ad -%C(red)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=short
abort = reset --hard HEAD
undo = reset HEAD~1
recommit = commit --amend
[color]
diff = auto
status = auto
branch = auto
ui = auto
[color "branch"]
current = blue reverse
local = blue
remote = green
[color "diff"]
meta = blue bold
frag = magenta bold
old = red
new = cyan
[color "status"]
added = blue
changed = green
untracked = cyan
[core]
excludesfile = /Users/chetnachaudhari/.gitignore
whitespace = -trailing-space
[apply]
whitespace = nowarn
[format]
# pretty = %C(yellow)%h%Creset %s %C(red)(%an, %cr)%Creset
[github]
user = ChetnaChaudhari
[log]
date = local
decorate = short
abbrevCommit
[branch]
autosetuprebase = always
[include]
path = ~/.gitconfig.local
[push]
default = current
[pull]
rebase = true
[merge]
tool = vimdiff
ff = false