Best of Bash โ January 2024
- 1
- 2
DEVยท2y
Remove merged branches from your local machine
Learn how to remove merged branches from your local machine in Git. The command 'git fetch -p && git branch -vv | awk '/:gone]/{print $1}' | xargs git branch -d' fetches updates from the remote repository, identifies local branches with deleted upstream branches, and deletes those local branches.
- 3
- 4
Community Picksยท2y
serversideup/spin: ๐ Replicate your production environment locally using Docker. Just run "spin up". It's really that easy.
Spin is a bash utility that improves the user-experience for teams using Docker. It allows you to replicate any environment on any machine and centralize your infrastructure using Docker. Spin uses proven technologies such as Docker, Ansible, and GitHub Actions templates.