alias g='git'
alias gd='git diff'
alias gs='git status'
alias gb='git branch'
alias gc='git commit'
alias gco='git checkout'
alias ga='git add'
alias gl='git log'
alias gbn='git checkout -b'
alias gadp='git add -p'
alias gds='git diff --staged'
alias gps='git push origin'
alias gpl='git pull origin'
alias gf='git fetch'
alias gr='git rebase'
alias gpr='git pull --rebase'
alias gpro='git pull --rebase origin'
alias grh='git reset HEAD'
alias grollback='git reset --soft HEAD~1'
alias pvenv='python -m venv .venv'
alias act='. .venv/bin/activate'
alias plint='python -m black . && python -m isort .'
alias blint='python -m blue . && python -m isort .'
alias psort='python -m isort'
alias pserv='python -m http.server 8080'
alias pm='python manage.py'
alias pmmg='python manage.py migrate'
alias pmmk='python manage.py makemigrations'
alias pmrs='python manage.py runserver'
alias pmsh='python manage.py shell'
alias pme='python manage.py makemessages'
alias pmc='python manage.py compilemessages'
alias ys='yarn start'
alias yi='yarn install'
alias yb='yarn build'
alias ya='yarn add'
alias ye='yarn extract'
alias yc='yarn compile'
alias dim='docker images'
alias dps='docker ps'
alias dpsa='docker ps -a'
alias dcp='docker-compose'
alias dcb='docker-compose build'
alias dcu='docker-compose up'
alias dcud='docker-compose up -d'
alias dcd='docker-compose down'
alias dcst='docker-compose stop'
alias dcps='docker-compose ps'
alias dcr='docker-compose run'
alias dce='docker-compose exec'
alias dcl='docker-compose logs'
This will delete your images and database data!
alias dcpurge='docker-compose down -v --rmi all'