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> |
How to Delete Git Remote Branches
阅读 88
2022-09-06
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> |
相关推荐
精彩评论(0)