一、git进行分支管理
一开始的时候,master是一条线,git使用master指向最新的提交,再用HEAD指向master就能确定当前的分支,HEAD就是指向当前的分支。
1.创建release-branch分支
$ git checkout -b release-branch
Switched to a new branch "release-branch"
2.查看所有分支
$ git branch // 正在使用的分支名前会有一个 *
3.切换回master分支
$ git checkout master
Switched to branch "master"
4.将在release-branch开发的代码合到master分支
$ git merge release-branch
5.删除分支
$ git branch -d release-branch
二、冲突的解决
1.git使用<<<<<,=====,>>>>> 标记不同分支的内容,
2.手动解决冲突的文件,然后git add "conflict file",然后提交
3.查看分支合并情况:$ git log --graph --pretty=online --abbrev=commit
时间: 2024-10-07 21:07:56