git删除分支branch

850 词

删除本地分支#

如果上面的某个分支不想要了,想删掉本地的分支,在删除分支的时候, 我们会使用 git branch –delete 分支名称 来执行.
–delete 缩写就是-d,可以使用 git branch -d 分支名称来代替

  • -d 是–delete 的缩写,在使用–delete 删除分支时,该分支必须完全和它的上游分支 merge 完成,如果没有上游分支,必须要和 HEAD 完全 merge
  • -D 是–delete –force 的缩写,这样写可以在不检查 merge 状态的情况下删除分支
  • –force 简写-f,作用是将当前 branch 重置到初始点(startpoint),如果不使用–force 的话,git 分支无法修改一个已经存在的分支.

在不检查 merge 状态的情况下删除分支,可以使用 git branch -D 分支名称 ,它是 git branch --delete --force 分支名称的缩写

如果当前状态是在 yoyo2 分支上,直接删除 yoyo2 分支是不可以的

1
2
3
4
5
6
7
>git branch
master
yoyo
* yoyo2

>git branch -D yoyo2
error: Cannot delete branch 'yoyo2' checked out at 'D:/soft/git/web_git'

必须先切换到其它分支上才能删除

1
2
3
4
5
6
7
8
9
10
11
>git checkout master
A .idea/vcs.xml
Switched to branch 'master'
Your branch is up-to-date with 'origin/master'.

>git branch -D yoyo2
Deleted branch yoyo2 (was c613c75).

>git branch
* master
yoyo

删除远程分支#

如果我们想通过本地的命令行删除远程分支,需先建立本地分支和远程分支的关系。
场景 1: 本地新建一个分支,推送到远程分支,后面不想要这个本地分支和远程分支了

先按前面的步骤创建本地分支并 checkout 到你要推送的分支上

1
2
3
4
5
6
7
8
9
10
>git branch
* master
yoyo

>git checkout yoyo
A .idea/vcs.xml
Switched to branch 'yoyo'

>git status
On branch yoyo

接着推送到远程分支上:git push origin 本地分支名称:远程分支名称,这样本地分支和远程分支就建立了关系

1
>git push origin yoyo:yoyo

接下来先删除本地分支,再删除远程分支

1
2
3
4
5
6
7
8
9
10
11
>git checkout master
A .idea/vcs.xml
Switched to branch 'master'
Your branch is up-to-date with 'origin/master'.

>git branch -D yoyo
Deleted branch yoyo (was c613c75).

>git push origin --delete yoyo

- [deleted] yoyo

这样我们的本地分支和远程分支都删掉掉了

场景 2: 本地没这个分支,远程上有这个分支,想删掉远程的分支

如果我本地有这个项目,我远程上有个 yoyoketang 的分支(本地没分支),可以先拉到我们的本地,建立关系

1
2
3
>git checkout -b yoyoketang origin/yoyoketang
fatal: Cannot update paths and switch to branch 'yoyoketang' at the same time.
Did you intend to checkout 'origin/yoyoketang' which can not be resolved as commit?

上面有个报错,可以执行 git fetch更新下

1
2
3
4
5
6
7
8
9
>git fetch
remote: Enumerating objects: 15, done.
remote: Counting objects: 100% (15/15), done.
remote: Compressing objects: 100% (9/9), done.
remote: Total 13 (delta 7), reused 10 (delta 4), pack-reused 0
Unpacking objects: 100% (13/13), done.

c613c75..f380d71 master -> origin/master
* [new branch] yoyoketang -> origin/yoyoketang

再执行 git checkout -b 本地分支 origin/远程分支 就可以了

1
2
3
4
5
6
7
>git checkout -b yoyoketang origin/yoyoketang
A .idea/vcs.xml
Branch yoyoketang set up to track remote branch yoyoketang from origin.
Switched to a new branch 'yoyoketang'
>git branch
master
* yoyoketang

同步到本地分支后,跟上面操作一样,先删除本地分支,再删除远程分支

1
2
3
4
5
6
7
8
9
10
11
12
>git checkout master
A .idea/vcs.xml
Switched to branch 'master'
Your branch is behind 'origin/master' by 3 commits, and can be fast-forwarded.
(use "git pull" to update your local branch)

>git branch -D yoyoketang
Deleted branch yoyoketang (was eaa102f).

>git push origin --delete yoyoketang

- [deleted] yoyoketang