Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 532 Bytes

delete-remote-branch.md

File metadata and controls

22 lines (16 loc) · 532 Bytes
标题 标签
deleteRemoteBranch(删除远程的分支) branch,repository(分支,仓库)

删除远程分支。

  • 使用 git push -d <remote> <branch> 删除给定 <remote> 上指定的远程 <branch>

代码如下:

# 语法
git push -d <remote> <branch>

使用示例:

git checkout master
git push -d origin branch-1
# 删除远程的branch-1分支