News

How to pop a Git stash with a name To pop a Git stash by name, simply use pop instead of apply. ### perform a git stash apply by name $ git stash pop stash^{/stash-with-name} The content after the ^ ...