Last active
August 29, 2015 14:13
-
-
Save wwwbruno/f2244c23b1745977a80b to your computer and use it in GitHub Desktop.
My .gitconfig
This file contains hidden or 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
| # ~/.gitconfig | |
| [core] | |
| fileMode = false | |
| [user] | |
| email = [email protected] | |
| name = Bruno Almeida | |
| [alias] | |
| lg = log --pretty=format:'%Cblue%h | %Cred%ad | %C(yellow)%an | %Cgreen%d %Creset%s' --date=short | |
| st = !git lg -10 && git branch && git status | |
| pom = push origin master | |
| pod = push origin develop | |
| fom = !git fetch && git rebase origin/master && git st | |
| fod = !git fetch && git rebase origin/develop && git st | |
| [color] | |
| ui = true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment