Skip to content

Instantly share code, notes, and snippets.

@petarjs
Created May 13, 2016 07:51
Show Gist options
  • Save petarjs/3c93a25ef5b9328c895fb6edc8b034cf to your computer and use it in GitHub Desktop.
Save petarjs/3c93a25ef5b9328c895fb6edc8b034cf to your computer and use it in GitHub Desktop.
alias gffs = 'git flow feature start $@'
alias gfff = 'git flow feature finish $@'
alias glos = 'git pull origin staging'
alias glod = 'git pull origin develop'
alias gpod = 'git push origin develop'
alias gpos = 'git push origin staging'
alias glog = 'git log --oneline --all --graph --decorate $@'
alias gc = 'git commit $@'
alias ga = 'git add $@'
alias gcmsg = 'git commit -m $@'
alias gl = 'git pull $@'
alias gp = 'git push $@'
alias gst = 'git status'
alias gco = 'git checkout $@'
alias gb = 'git branch $@'
alias gbl = 'git branch --list'
alias grbm = 'git rebase master'
alias gd = 'git diff $@'
alias gda = 'git diff .'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment