-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
executable file
·52 lines (52 loc) · 1.12 KB
/
gitconfig
File metadata and controls
executable file
·52 lines (52 loc) · 1.12 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
[filter "media"]
clean = git-media-clean %f
smudge = git-media-smudge %f
[user]
name = Alex Axthelm
email = AAxthelm@che.in.gov
signingkey = 81F7F60A
[push]
default = matching
[core]
excludesfile = /Users/alex/.gitignore_global
autocrlf = input
[color]
ui = true
[pull]
rebase = true
[branch]
autosetuprebase = always
[rerere]
enabled = true
[diff]
tool = vimdiff
[credential]
helper = cache --timeout=3600
[alias]
last = log -1 --stat
cp = cherry-pick
co = checkout
cl = clone
ci = commit
st = status -sb
br = branch
unstage = reset HEAD --
dc = diff --cached
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %Cblue<%an>%Creset' --abbrev-commit --date=relative --all
s = status -s
co = checkout
cob = checkout -b
pushall = !git remote | xargs -L1 git push --all
pf = pull --ff-only
merge-to = "!gitmergeto() { git push \"`git rev-parse --show-toplevel`\" `git rev-parse --abbrev-ref HEAD`:$1; } && gitmergeto"
[mergetool]
keeptemporaries = false
keepbackups = false
prompt = false
trustexitcode = false
[merge]
tool = fugitive
[commit]
gpgsign = true
[tag]
gpgsign = true