Skip to content

Commit 2789e47

Browse files
committedJan 8, 2018
Update repo
1 parent 3a26c15 commit 2789e47

File tree

3 files changed

+53
-49
lines changed

3 files changed

+53
-49
lines changed
 

‎.gitconfig

+25-24
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,41 @@
1-
[user]
2-
name = YOUR NAME
3-
email = YOUR EMAIL
4-
5-
[color]
6-
diff = auto
7-
grep = auto
8-
interactive = auto
9-
status = auto
10-
branch = auto
11-
status = auto
12-
13-
[core]
14-
editor = mate -w
15-
16-
[help]
17-
autocorrect = 1
18-
191
[alias]
202
br = branch
213
ci = commit
224
cm = !git add -A && git commit -m
235
co = checkout
246
cob = checkout -b
25-
ec = config --global -e
267
df = diff
8+
ec = config --global -e
279
i = init
2810
lg = log -pgit ps
2911
lg1 = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
3012
lg2 = log --graph --abbrev-commit --decorate --date=relative --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all
3113
lg3 = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(reset) %C(bold green)(%ar)%C(reset)%C(bold yellow)%d%C(reset)%n'' %C(white)%s%C(reset) %C(dim white)- %an%C(reset)' --all
14+
pl = pull
15+
plb = pull origin
3216
pom = pull origin master
3317
ps = push
34-
pl = pull
35-
rao = remote add origin
36-
plm = pull origin master
37-
psm = push origin master
3818
psb = push origin
39-
plb = pull origin
4019
st = status
20+
plm = pull origin master
21+
psm = push origin master
22+
rao = remote add origin
23+
24+
[color]
25+
branch = auto
26+
diff = auto
27+
grep = auto
28+
interactive = auto
29+
status = auto
30+
status = auto
31+
32+
[core]
33+
editor = mate -w
34+
35+
[help]
36+
autocorrect = 1
37+
38+
[user]
39+
name = YOUR NAME
40+
email = YOUR EMAIL
41+

‎LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2017 Rodrigo Oler
3+
Copyright (c) 2017-2018 Rodrigo Oler
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

‎README.md

+27-24
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,47 @@
11
# git-alias
22

3-
````text
4-
[user]
5-
name = YOUR NAME
6-
email = YOUR EMAIL
7-
8-
[color]
9-
diff = auto
10-
grep = auto
11-
interactive = auto
12-
status = auto
13-
branch = auto
14-
status = auto
15-
16-
[core]
17-
editor = mate -w
18-
19-
[help]
20-
autocorrect = 1
3+
Personal git configuration used in day-to-day projects to make the developer's life more productive and effective
214

5+
````text
226
[alias]
237
br = branch
248
ci = commit
259
cm = !git add -A && git commit -m
2610
co = checkout
2711
cob = checkout -b
28-
ec = config --global -e
2912
df = diff
13+
ec = config --global -e
3014
i = init
3115
lg = log -pgit ps
3216
lg1 = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
3317
lg2 = log --graph --abbrev-commit --decorate --date=relative --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all
3418
lg3 = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(reset) %C(bold green)(%ar)%C(reset)%C(bold yellow)%d%C(reset)%n'' %C(white)%s%C(reset) %C(dim white)- %an%C(reset)' --all
19+
pl = pull
20+
plb = pull origin
3521
pom = pull origin master
3622
ps = push
37-
pl = pull
38-
rao = remote add origin
39-
plm = pull origin master
40-
psm = push origin master
4123
psb = push origin
42-
plb = pull origin
4324
st = status
25+
plm = pull origin master
26+
psm = push origin master
27+
rao = remote add origin
28+
29+
[color]
30+
branch = auto
31+
diff = auto
32+
grep = auto
33+
interactive = auto
34+
status = auto
35+
status = auto
36+
37+
[core]
38+
editor = mate -w
39+
40+
[help]
41+
autocorrect = 1
42+
43+
[user]
44+
name = YOUR NAME
45+
email = YOUR EMAIL
46+
4447
````

0 commit comments

Comments
 (0)
Please sign in to comment.