-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgitconfig.tmpl
32 lines (31 loc) · 951 Bytes
/
gitconfig.tmpl
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
[user]
name = YOUR_NAME_HERE
email = YOUR_EMAIL_HERE
[core]
excludesfile = YOUR_HOME_DIR_HERE/.gitignore
editor = /usr/bin/vim
[rerere]
enabled = 1
[remote "origin"]
push = HEAD
[branch "master"]
merge = refs/heads/master
[alias]
recent-branches = --paginate for-each-ref --format='%(committerdate:relative)%09%(refname:short)' --sort='-committerdate' refs/heads
recent-branches-origin = --paginate for-each-ref --format='%(committerdate:relative)%09%(refname:short)' --sort='-committerdate' refs/remotes/origin
ig = update-index --assume-unchanged
noig = update-index --no-assume-unchanged
tree = log --graph --decorate --pretty=oneline --abbrev-commit --all
[push]
default = current
[merge]
defaultToUpstream = true
[color]
ui = true
[hub]
host = github.com
[filter "lfs"]
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process