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
git tag -l "test-18.*" | %{git tag -d $_} | |
git tag -l "build-*-18.4.0.*" | %{ git push origin --delete $_; git tag -d $_ } | |
# Don't show file in changes | |
git update-index --skip-worktree <file> | |
# List files you are skipping | |
git ls-files -v . | sls ^S | |
# Undo skip file | |
git update-index --no-skip-worktree <file> |
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
# Stop all running containers | |
docker stop $(docker ps -q | paste -sd " " -) | |
# Stop and remove all containers | |
docker rm -f $(docker ps -aq | paste -sd " " -) | |
# Stop and remove all images | |
docker rmi -f $(docker images -aq | paste -sd " " -) |