Git 分支合并
合并分支
我们已经准备好紧急修复,因此让我们合并主分支和紧急修复分支。
首先,我们需要切换到 master 分支:
例子
git checkout master
Switched to branch 'master'
现在我们将当前分支(master)与 emergency-fix 合并:
例子
git merge emergency-fix
Updating 09f4acd..dfa79db
Fast-forward
index.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
由于 emergency-fix 分支直接来自 master,并且在我们工作期间没有对 master 进行任何其他更改,因此 Git 将其视为 master 的延续。因此它可以“快进”,只需将 master 和 emergency-fix 指向同一次提交即可。
由于 master 和 emergency-fix 现在本质上相同,我们可以删除 emergency-fix,因为它不再需要:
例子
git branch -d emergency-fix
Deleted branch emergency-fix (was dfa79db).
合并冲突
现在我们可以转到 hello-world-images 并继续工作。添加另一个图像文件 (img_hello_git.jpg) 并更改 index.html,以便显示它:
例子
git checkout hello-world-images
Switched to branch 'hello-world-images'
例子
<!DOCTYPE html>
<html>
<head>
<title>你好世界!</title>
<link rel="stylesheet" href="bluestyle.css">
</head>
<body>
<h1>你好世界!</h1>
<div><img src="img_hello_world.jpg" alt="来自太空的“你好世界”" style="width:100%;max-width:960px"></div>
<p>这是我的新 Git Repo 中的第一个文件。</p>
<p>我们的文件中有一个新行!</p>
<div><img src="img_hello_git.jpg" alt="你好 Git" style="width:100%;max-width:640px"></div>
</body>
</html>
现在,我们已经完成了这里的工作,并且可以为这个分支进行准备和提交:
例子
git add --all
git commit -m "added new image"
[hello-world-images 1f1584e] added new image
2 files changed, 1 insertion(+)
create mode 100644 img_hello_git.jpg
我们看到两个分支中的 index.html 都已更改。现在我们准备将 hello-world-images 合并到 master。但是我们最近在 master 中所做的更改会发生什么?
例子
git checkout master
git merge hello-world-images
Auto-merging index.html
CONFLICT (content): Merge conflict in index.html
Automatic merge failed; fix conflicts and then commit the result.
合并失败,因为 index.html 的版本之间存在冲突。让我们检查一下状态:
例子
git status
On branch master
You have unmerged paths.
(fix conflicts and run "git commit")
(use "git merge --abort" to abort the merge)
Changes to be committed:
new file: img_hello_git.jpg
new file: img_hello_world.jpg
Unmerged paths:
(use "git add <file>..." to mark resolution)
both modified: index.html
这证实了 index.html 中存在冲突,但图像文件已准备好并准备提交。
所以我们需要解决这个冲突。在编辑器中打开文件:
例子
<!DOCTYPE html>
<html>
<head>
<title>你好世界!</title>
<link rel="stylesheet" href="bluestyle.css">
</head>
<body>
<h1>你好世界!</h1>
<div><img src="img_hello_world.jpg" alt="来自太空的“你好世界”" style="width:100%;max-width:960px"></div>
<p>这是我的新 Git Repo 中的第一个文件。</p>
<<<<<<< 头部
<p>此行用于展示合并的工作原理。</p>
=======
<p>我们的文件中有一个新行!</p>
<div><img src="img_hello_git.jpg" alt="你好 Git" style="width:100%;max-width:640px"></div>
>>>>>>> 你好世界图像
</body>
</html>
我们可以看到版本之间的差异,并根据需要进行编辑:
例子
<!DOCTYPE html>
<html>
<head>
<title>你好世界!</title>
<link rel="stylesheet" href="bluestyle.css">
</head>
<body>
<h1>你好世界!</h1>
<div><img src="img_hello_world.jpg" alt="来自太空的“你好世界”" style="width:100%;max-width:960px"></div>
<p>这是我的新 Git Repo 中的第一个文件。</p>
<p>此行用于展示合并的工作原理。</p>
<div><img src="img_hello_git.jpg" alt="你好 Git" style="width:100%;max-width:640px"></div>
</body>
</html>
现在我们可以暂存 index.html 并检查状态:
例子
git add index.html
git status
On branch master
All conflicts fixed but you are still merging.
(use "git commit" to conclude merge)
Changes to be committed:
new file: img_hello_git.jpg
new file: img_hello_world.jpg
modified: index.html
冲突已修复,我们可以使用提交来完成合并:
例子
git commit -m "merged with hello-world-images after fixing conflicts"
[master e0b6038] merged with hello-world-images after fixing conflicts
并删除 hello-world-images 分支:
例子
git branch -d hello-world-images
Deleted branch hello-world-images (was 1f1584e).
现在,您对分支和合并的工作原理有了更好的了解。是时候开始使用远程存储库了!