# Git 分支

分支操作

# 相关命令

  1. git branch
  2. git checkout
  3. git merge
  4. git rebase
# 查看本地分支
git branch
# 查看所有分支
git branch -a
# 查看远程分支
git branch -r
# 新建分支
git branch newBranch
# 新建并切换分支
git branch -c newBranch
# 切换分支
git checkout branchName
# 删除分支
git branch -d branchName
# 强制删除本地分支
git branch -D branchName
# 合并分支
git merge <commit>
# 变基
# rebase
# 回滚到某次提交
git reset --hard commit-id
# 回滚最近三次的提交
git reset --hard HEAD~3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24