Last active
September 20, 2018 14:06
-
-
Save henocdz/44b34b4b2535426d60bb7e04833d39fa to your computer and use it in GitHub Desktop.
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
| # REACT NATIVE | |
| alias rnlios="react-native log-ios" | |
| # DJANGO | |
| alias djmm="python manage.py makemigrations" | |
| alias djm="python manage.py migrate" | |
| alias djrun="python manage.py runserver 0.0.0.0:8000" | |
| alias pm="python manage.py" | |
| alias pmt="python manage.py test" | |
| # VAGRANT | |
| alias vash="vagrant ssh" | |
| alias vup="vagrant up" | |
| alias vared="vagrant reload" | |
| # YARN | |
| alias ys="yarn start" | |
| # GIT | |
| alias gclean="git branch | grep -v \"master\|staging\|v18.*\" | xargs git branch -D > /dev/null" | |
| # OTHER | |
| alias rd="source ~/restore_data" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment