Last active
March 20, 2016 18:21
-
-
Save thiagosf/f5d9a2b3c701fbe2c842 to your computer and use it in GitHub Desktop.
Meu bash_profile do vagrant
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
| # Atalhos gerais | |
| alias nge='sudo nginx -c /etc/nginx/nginx.conf -t' | |
| alias ngr='sudo service nginx restart' | |
| # Atalhos para GIT | |
| alias gs='git status' | |
| alias ga='git add .' | |
| alias gpo='git push origin master' | |
| alias gpoo='git push upstream master' | |
| alias gpw='git push web master' | |
| alias gpu='git pull upstream master' | |
| alias gpb='git pull base master' | |
| alias gc='git commit -m ' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment