0
点赞
收藏
分享

微信扫一扫

How to Delete Git Remote Branches

修炼之士 2022-09-06 阅读 88


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 条评论