forked from namabile/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
53 lines (45 loc) · 1.09 KB
/
gitconfig
File metadata and controls
53 lines (45 loc) · 1.09 KB
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]
name = Matthew Schmohl
email = matthew.schmohl@gmail.com
credentials = cache
[branch]
autosetupmerge = true
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red bold
new = green bold
whitespace = red reverse
[color "status"]
added = yellow
changed = green
untracked = cyan
[core]
whitespace=fix,-indent-with-non-tab,trailing-space,cr-at-eol
excludesfile = ~/.gitignore
autocrlf = input
editor = vim
[alias]
st = status
ci = commit
br = branch
co = checkout
df = diff
lg = log --pretty=format:'%Cred%h%Creset %C(bold blue)<%an>%Creset%C(yellow)%d%Creset %Cgreen(%cr)%Creset %s'
lpo = log --pretty=oneline --abbrev-commit --graph --decorate
es = !git pull --rebase && git push
s = status -s -u
d = diff --color-words
rpull = pull --rebase --stat
pullr = pull --rebase --stat
[merge]
tool = vimdiff
[credential]
helper = cache --timeout=43200
user = schmohlio
[branch "*branch-name*"]
rebase = true