-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
34 lines (34 loc) · 822 Bytes
/
.gitconfig
File metadata and controls
34 lines (34 loc) · 822 Bytes
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
[user]
email = richdel1991@gmail.com
name = Newky
[diff]
external = git_diff_wrapper.sh
[pager]
diff =
[push]
default = tracking
[alias]
unstage = reset HEAD
st = status
co = checkout
cob = checkout -b
br = branch
branchrename = branch -m
currbranch = rev-parse --abbrev-ref HEAD
cov = commit --no-verify
ll = log --oneline --color
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
ndiff = diff --no-ext-diff
nndiff = diff --no-ext-diff --name-only
cdiff = diff --cached
rpull = pull --rebase
pom = push origin master
cm = checkout master
adu = add -u
lastmessage = log -1 --pretty=%s
[branch]
autosetuprebase = always
[mergetool "vimdiff3"]
cmd = vim -f -d \"$LOCAL\" \"$MERGED\" \"$REMOTE\"
[color]
ui = auto