I often need to switch branches while still having some launch.json file silightly modified etc. Currently, I now either have to clean the changes before I can switch branches or have to open a terminal instead (which breaks the workflow) and type git stash, git checkout, git stash pop. It would be nice if Code had buttons for stashing, either next to "Clean All" ("Stash"), or in the "..." menu. The "..." menu should have a "Pop" submenu, that expands to all listed stashs with their messages to instantly apply them. Stashing in git is great because it's nothing but a quick stack to put temporary changes while doing stuff like checking out another branch.
I often need to switch branches while still having some launch.json file silightly modified etc. Currently, I now either have to clean the changes before I can switch branches or have to open a terminal instead (which breaks the workflow) and type
git stash,git checkout,git stash pop. It would be nice if Code had buttons for stashing, either next to "Clean All" ("Stash"), or in the "..." menu. The "..." menu should have a "Pop" submenu, that expands to all listed stashs with their messages to instantly apply them. Stashing in git is great because it's nothing but a quick stack to put temporary changes while doing stuff like checking out another branch.