Best of Bash โ€” January 2024

  1. 1
    Video
    Avatar of communityCommunity Picksยท2y

    Vim As Your Editor - Introduction

  2. 2
    Article
    Avatar of devtoDEVยท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. 3
    Article
    Avatar of hnHacker Newsยท2y

    Which command did you run 1731 days ago?

    Learn how to configure your shell to record every command, the benefits of having a long shell history, and how to use a fuzzy-finder to search through it.

  4. 4
    Article
    Avatar of communityCommunity 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.