Skip to content

Instantly share code, notes, and snippets.

@juelvaldivia
Created March 18, 2020 14:56
Show Gist options
  • Save juelvaldivia/397c3dd9c1846b48f52fe7e0a38b6a2d to your computer and use it in GitHub Desktop.
Save juelvaldivia/397c3dd9c1846b48f52fe7e0a38b6a2d to your computer and use it in GitHub Desktop.
ALIAS GIT
alias add="git add ."
alias commit="git commit -am"
alias feature="git flow feature"
alias release="git flow release"
alias hotfix="git flow hotfix"
alias check="git checkout"
alias branch="git branch"
alias develop="git checkout develop"
alias master="git checkout master"
alias deploy_prod="git push production master"
alias deploy_test="git push test master"
alias pullo="git pull origin"
alias pusho="git push origin"
alias pulls="git pull server"
alias pushs="git push server"
alias push="git push"
alias pull="git pull"
alias merge="git merge"
alias status="git status"
@juelvaldivia
Copy link
Author

I know it

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment