-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
44 lines (37 loc) · 693 Bytes
/
.gitconfig
File metadata and controls
44 lines (37 loc) · 693 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
35
36
37
38
39
40
41
42
43
44
#################
### GITCONFIG ###
#################
[user]
name = Carlos Estrella
email = cestrell@umich.edu
[color]
ui = true
diff = auto
branch = auto
status = auto
[core]
editor = vim
symlinks = true
#excludesfile = ~/.gitignore_global
[credential]
helper = cache
[github]
user = cestrell
[log]
date = iso-strict # Superior date format
[alias]
a = add
b = branch
bs = symbolic-ref --short HEAD # Branch short
c = commit
cm = commit -m
d = diff
ps = push
pl = pull
psuo = push -u origin
s = status
st = stash
clog = log --all --decorate --oneline --graph
parent = rev-parse --abbrev-ref --symbolic-full-name @{u}
last = log -1 HEAD
unstage = reset HEAD --