-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
executable file
·34 lines (33 loc) · 975 Bytes
/
.gitconfig
File metadata and controls
executable file
·34 lines (33 loc) · 975 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 = Gauthier Östervall
email = gostervall@markem-imaje.com
[core]
editor = emacsclient -c -a emacs
#editor = emacs -nw
excludesfile = ~/.gitignore
[color]
diff = auto
status = auto
branch = auto
ui = true
[alias]
b = branch
d = diff --no-ext-diff # See diff.external to see what `git diff` runs
co = !git checkout
hist = !gitk --all&
st = status
sm = submodule
g = log --graph --pretty=format:'%Cred%h%Creset - %Cgreen(%ar)%Creset%x09%s%C(auto)%d%Creset' --abbrev-commit --date=short
graph = log --graph --pretty=format:'%Cred%h%Creset - %Cgreen(%ar)%Creset%x09%Cblue[%an]%Creset%x09%s%C(auto)%d%Creset' --abbrev-commit --date=short # --all
exec = !exec
[push]
#default = simple
default = current
followTags = true
recurseSubmodules = check
[credential]
helper = cache --timeout 7200
[diff]
#external = side-by-side-diff-for-git.sh
[status]
showUntrackedFiles = all