Skip to content

24th November 2021

Computer Science

GNULinux

Git

  • New: Git stash.

    If you have uncommitted changes and you want to switch to another branch, you can temporarily save those changes with:

    git stash
    

    Then, to reapply them, do:

    git stash pop