-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
31 lines (31 loc) · 857 Bytes
/
.gitconfig
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
[user]
name = Andreas Grivas
email = [email protected]
signingkey = 24A721BB42D9A790
[core]
editor = vim
excludesfile = ~/.git-gitignore
[push]
followTags = true
# stolen from http://githowto.com/aliases
[alias]
pushall = push --recurse-submodules=on-demand
co = checkout
ci = commit
st = status
sl = stash list
sd = stash drop
sp = stash pop
br = branch
hist = log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short
type = cat-file -t
dump = cat-file -p
# stolen from http://fredkschott.com/post/2014/02/git-log-is-so-2005/
lg = log --color --decorate --graph --pretty=format:'%C(yellow)%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%C(bold blue)<%an>%Creset' --abbrev-commit
lgall = log --oneline --color --graph --decorate --all
[gpg]
program = /usr/bin/gpg
[commit]
gpgsign = true
[tag]
forceSignAnnotated = true