forked from efernandez/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
42 lines (30 loc) · 840 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
35
36
37
38
39
40
41
42
[alias]
gl = log -10 --color=always --all --graph --topo-order --pretty='format: %Cgreen%h%Creset %s%Cred%d%Creset%n'
gll = log --color=always --all --graph --topo-order --pretty='format: %Cgreen%h%Creset %s%Cred%d%Creset%n'
st = status
ci = commit
cia = commit --amend --no-edit
co = checkout
br = branch
unstage = reset HEAD --
last = log -1 HEAD
undo = reset --soft HEAD^
meld = !~/lib/git-meld/git-meld.pl
up = !git remote update -p; git merge --f-only @{u}
[color]
ui = auto
[user]
name = Enrique Fernandez
email = efernandez@clearpathrobotics.com
[diff]
tool = meld
guitool = meld
[difftool]
prompt = false
[core]
excludesfile = ~/.gitignore_global
editor = vim
[credential]
helper = cache --timeout=300
[push]
default = current