You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 25, 2020. It is now read-only.
Description
Part of the GitHub workflow includes tidying up your branches. VisualGit should allow you to delete branches after you are done with them.
Acceptance criteria
VisualGit provides the functionality to delete branches from VisualGit locally and on GitHub.
Pointers / Solutions
Deleting branches on GitHub:
git push origin --delete <BRANCH_NAME>
Deleting branches locally:
git branch -D <BRANCH_NAME>
The text was updated successfully, but these errors were encountered: