Created
February 24, 2025 19:51
-
-
Save keckelt/191b3af0bac2de33eda4c27792b417b7 to your computer and use it in GitHub Desktop.
Bash/Zsh Aliases
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
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