-
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) · 766 Bytes
/
.gitconfig
File metadata and controls
34 lines (34 loc) · 766 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]
name = Will DeBerry
email = [email protected]
[color]
ui = always
[color "diff-highlight"]
oldNormal = red bold
oldHighlight = red bold 52
newNormal = green bold
newHighlight = green bold 22
[merge]
tool = emerge
[core]
editor = vim
autocrlf = false
ignorecase = false
pager = /usr/local/bin/diff-highlight | less -F -X
[alias]
lg = log --oneline --graph --decorate
ca = commit -a
cl = clean -i
cm = commit
cp = cherry-pick
co = checkout
st = status
mt = mergetool
recent = branch -r --sort=-committerdate --format="%(committerdate)%09%(refname:short)"
[push]
default = simple
autoSetupRemote = true
[branch]
autosetuprebase = always
[fetch]
prune = true