Skip to content

Instantly share code, notes, and snippets.

@wwwbruno
Last active August 29, 2015 14:13
Show Gist options
  • Save wwwbruno/f2244c23b1745977a80b to your computer and use it in GitHub Desktop.
Save wwwbruno/f2244c23b1745977a80b to your computer and use it in GitHub Desktop.
My .gitconfig
# ~/.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