It’s easy to remove a certain remote branch in a Git respository. You could try this
1 | git push origin --delete <branchName> |
And of course another short command is waiting for You
1 | git push origin :<branchName> |
微信扫一扫
It’s easy to remove a certain remote branch in a Git respository. You could try this
1 | git push origin --delete <branchName> |
And of course another short command is waiting for You
1 | git push origin :<branchName> |
相关推荐