-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
45 lines (40 loc) · 772 Bytes
/
Copy pathgitconfig
File metadata and controls
45 lines (40 loc) · 772 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
45
[color]
branch = auto
status = auto
diff = auto
ui = auto
[user]
name = Kevin Lynch
email = klynch@gmail.com
[pack]
threads = 0
[core]
excludesfile = ~/.gitignore
[push]
default = current
[alias]
s = status
sb = status -sb
co = checkout
b = checkout -b
br = branch
lg = log -p
lol = log --graph --decorate --pretty=oneline --abbrev-commit
lola = log --graph --decorate --pretty=oneline --abbrev-commit --all
ls = ls-files
ci = commit
a = commit --amend
c = commit
ca = commit -a
msg = commit --allow-empty -m
d = diff
dh = diff HEAD^
dm = diff master
p = !gh-pick
pick = cherry-pick -s
remaster = rebase master
rei = rebase -i master
top = git rev-parse HEAD
sts = stash save
sta = stash apply
stp = stash pop