git 常见命令行
一、克隆
git clone ***(git地址)
二、查看分支
1.查看远程分支
git branch -a
2.查看本地分支
git branch
三、切换分支
(1)方法一: 使用 git switch命令
1.创建并切换到新的分支
git switch -c ***(分支名)
2.直接切换到已有的分支
git switch ***(分支名)
(2)方法二: 使用 git checkout命令
1.创建并切换到新的分支
git checkout -b ***(分支名)
2.直接切换到已有的分支
git checkout ***(分支名)
3. 添加已有分支到远程分支
git push origin hotfix:hotfix
四、合并指定分支到当前分支
git merge ***(分支名)
五、删除分支
git branch -d ***(分支名)