Skip to content

Instantly share code, notes, and snippets.

@keckelt
Created February 24, 2025 19:51
Show Gist options
  • Save keckelt/191b3af0bac2de33eda4c27792b417b7 to your computer and use it in GitHub Desktop.
Save keckelt/191b3af0bac2de33eda4c27792b417b7 to your computer and use it in GitHub Desktop.
Bash/Zsh Aliases
alias ws="cd ~/ws"
alias home="cd ~"
alias fuck='rm -rf'
alias reyarn="fuck yarn.lock node_modules && yarn install"
alias repy="fuck .venv && python3 -m venv .venv && source .venv/bin/activate && make develop"
alias fu='pkill -KILL -f "yarn start|make start|python "'
alias switch="git switch -"
alias stash="git stash"
alias dev="git switch develop"
alias update="dev && git pull && switch"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment