This tutorial uses Homebrew to install colima and Docker.
It was tested on Apple MacBook Pro (13-inch, M1, 2020) 8G and macOS Monterey version 12.1 (21C52).
Make sure you have fully uninstall any versions of Docker. You can check using:
| aws rds create-db-cluster --db-cluster-identifier my-serverless-cluster --master-username mymasteruser \ | |
| --master-user-password mymasterpassword --engine aurora --engine-mode serverless \ | |
| --region us-east-1 |
| # Go to home directory | |
| cd ~ | |
| # You can change what anaconda version you want at | |
| # https://repo.continuum.io/archive/ | |
| wget https://repo.continuum.io/archive/Anaconda3-5.0.1-Linux-x86_64.sh | |
| bash Anaconda3-5.0.1-Linux-x86_64.sh -b -p ~/anaconda | |
| rm Anaconda3-5.0.1-Linux-x86_64.sh | |
| echo 'export PATH="~/anaconda/bin:$PATH"' >> ~/.bashrc |
If you add emoji to your commit messages for a GitHub repo, they become less boring, and you can convey the kind of change you're adding. See the full set of GitHub supported emoji here (also useful for easy copy&paste via a simple click).
The following is a possible scheme to use:
| # 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 |