Skip to content

Instantly share code, notes, and snippets.

@bruno-barros
Last active December 20, 2023 16:35
Show Gist options
  • Save bruno-barros/66a7da9168152111755651798d6f1522 to your computer and use it in GitHub Desktop.
Save bruno-barros/66a7da9168152111755651798d6f1522 to your computer and use it in GitHub Desktop.
aliases.sh
alias wp='php wp'
alias gs='git status'
alias gb='git branch'
alias gt='git tag'
alias ggo='git checkout'
alias gp='git push'
alias gpm='git push origin master:master'
alias gpd='git push origin develop:develop'
alias gpall='gpm && gpd && gp --tags'
alias gpupm='git push upstream master'
alias gpupd='git push upstream develop'
alias gpl='git pull'
alias gptheirs='git pull -s recursive -X theirs'
alias ga='git add'
alias gu='git add -u'
alias gc='git commit -m'
alias gf='git flow'
alias gfrs='git flow release start'
alias gfrf='git flow release finish'
alias gffs='git flow feature start'
alias gfff='git flow feature finish'
alias gfb='git flow bugfix'
alias gfbs='git flow bugfix start --showcommands'
alias gfbf='git flow bugfix finish -D --showcommands'
alias gfh='git flow hotfix'
alias gfhs='git flow hotfix start --showcommands'
alias gfhf='git flow hotfix finish -D --showcommands'
alias artisan='php artisan'
alias composer71='D:/laragon/bin/php/php-7.1.32-Win32-VC14-x64/php.exe C:/ProgramData/ComposerSetup/bin/composer.phar'
alias debug="php debug.php"
alias pest='vendor/bin/pest'
alias pests='vendor/bin/pest --testsuit'
alias pestf='vendor/bin/pest --filter'
alias doc='docker'
alias docc='docker-compose'
alias dev='npm run dev'
alias prod='npm run prod'
alias build='npm run build'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment