sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
- Download zsh-autosuggestions by
| # delete local tag '12345' | |
| git tag -d 12345 | |
| # delete remote tag '12345' (eg, GitHub version too) | |
| git push origin :refs/tags/12345 | |
| # alternative approach | |
| git push --delete origin tagName | |
| git tag -d tagName |
| # Bash Stuff | |
| alias reload='source ~/.bash_profile' | |
| alias a='echo "------------Your aliases------------";alias' | |
| alias sa='source ~/.bash_profile;echo "Bash aliases sourced."' | |
| alias bp='vim ~/.bash_profile' | |
| # Install git completion here: brew install git bash-completion | |
| [ -f /usr/local/etc/bash_completion ] && . /usr/local/etc/bash_completion | |
| # Git Stuff |
FWIW: I (@rondy) am not the creator of the content shared here, which is an excerpt from Edmond Lau's book. I simply copied and pasted it from another location and saved it as a personal note, before it gained popularity on news.ycombinator.com. Unfortunately, I cannot recall the exact origin of the original source, nor was I able to find the author's name, so I am can't provide the appropriate credits.