-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Closed
Description
Hello,
When I try to delete a remote branch using the GITLENS sidebar, the command entered on the terminal appears to be slightly off. Maybe I'm doing something wrong?
- GitLens Version: 8.3.2
- VSCode Version: 1.23.1
- OS Version: Windows 10 Pro (16299.431)
Steps to Reproduce:
- Got to Source Control view (Ctrl + Shift + G) and expand the GITLENS section in the sidebar
- Find branch to delete under Remotes (e.g.
geolocation) - Right click on branch and choose Delete Branch (via Terminal)
Result:
Text entered into terminal reads: git push true :origin/geolocation
Expected result:
Text entered into terminal reads: git push origin :geolocation
lionel-bijaoui