-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitconfig
34 lines (34 loc) · 884 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
32
33
34
[include]
path = ~/.gitconfig.local
[user]
email = [email protected]
name = Edwin Balani
signingkey = D7EE79A3B90CDC22
[commit]
verbose = true
[push]
default = simple
[pull]
ff = only
[core]
autocrlf = input
commitGraph = true
editor = nvim
excludesfile = ~/.gitignore
[gc]
writeCommitGraph = true
[alias]
hist = log --pretty=format:'%h %ad | %s%d [%an]' --graph --date=short
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
out = fire
going = fire
ci = commit -v
co = checkout
st = status -s
up = pull --rebase
# Next three from https://utcc.utoronto.ca/~cks/space/blog/programming/GitAliasesIUse
source = remote get-url origin
ffpull = pull --ff-only
ffmerge = merge --ff-only
[color]
ui = auto