Skip to content

Instantly share code, notes, and snippets.

@vijaybajrot
Last active April 11, 2019 13:52
Show Gist options
  • Save vijaybajrot/5844150b63252411f7db9ccff57052e3 to your computer and use it in GitHub Desktop.
Save vijaybajrot/5844150b63252411f7db9ccff57052e3 to your computer and use it in GitHub Desktop.
Git, PHP, NPM Aliases for zsh / bash

php

alias pa="php artisan"

git

alias g:st="git status"
alias g:status="git status"
alias g:acm="git add . && git commit -m"
alias g:p="git push"
alias g:po="git push origin"
alias g:pl="git pull"
alias g:plo="git pull origin"
alias g:b="git branch"

npm

alias nrw="npm run watch"
alias nrd="npm run dev"
alias nrs="npm run start"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment