New vscode feature, Fetch (Prune) & Delete
#800
devjiwonchoi
started this conversation in
Extension Show and Tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Since there were some issues about how to delete
pruned
local branches at once, my initial work was migrating the OS-specific commands to vscode. I found this not the best way to handle this, so I stuck with using the git commands only.Fetch (Prune) & Delete
basically runs the following git commands:git fetch --prune
git branch -d <branch>
git branch -D <branch>
This is opened at #183955, please check it out and approve it if you like this feature.
Beta Was this translation helpful? Give feedback.
All reactions