-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
35 lines (35 loc) · 854 Bytes
/
gitconfig
File metadata and controls
35 lines (35 loc) · 854 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
[user]
email = maccypher@gmail.com
name = MacCypher
[push]
default = simple
[alias]
lg = log --pretty=format:"%h %ad | %s%d [%an]" --graph --date=short
ls = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate
ll = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --numstat
cp = cherry-pick
st = status -s
cl = clone
ci = commit
co = checkout
cod = checkout develop
br = branch
df = diff
a = add
aa = add --all
dc = diff --cached
pu = push
puu = push -u origin
alias = ! git config --get-regexp ^alias\\. | sed -e s/^alias\\.// -e s/\\ /\\ =\\ /
pl = pull
re = remote
f = fetch
fa = fetch --all
m = merge
md = merge origin/develop
ce = config user.email
cu = config user.name
ta = tag -a
t = tag
put = push origin
rh = reset --hard