Created
September 26, 2017 20:12
-
-
Save juliend2/d61b2520a9804d007bbe174e17f73543 to your computer and use it in GitHub Desktop.
Git config of a lazy man
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[alias] | |
c = clone | |
cp = cherry-pick | |
ci = commit | |
ca = commit --amend | |
cma = commit -a -m | |
s = status | |
d = diff | |
ds = diff --staged | |
a = add | |
b = branch | |
l = log | |
long = log --pretty=full | |
p = push | |
co = checkout | |
lol = log --pretty=oneline --abbrev-commit --graph --decorate | |
gr = grep -n --color=always | |
h = help | |
tags = tag -l -n1 | |
[user] | |
name = Julien Desrosiers | |
email = [email protected] | |
[core] | |
excludesfile = /Users/juliendesrosiers/.gitignore_global | |
whitespace = trailing-space | |
[heroku] | |
account = personal | |
[color] | |
ui = true | |
[push] | |
default = simple | |
[color "diff-highlight"] | |
oldNormal = red bold | |
oldHighlight = red bold 52 | |
newNormal = green bold | |
newHighlight = green bold 22 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment