- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在使用 git 来跟踪对 LaTeX 文档的更改。我倾向于将共同作者的反馈保留在一个单独的分支中,然后再 merge 。到目前为止,事情似乎神奇地正确 merge ,但我想知道 merge 冲突究竟何时发生,以便我可以在 merge 过程中获得一些真正的信任(我当然不希望文本变得时髦)。
StackOverflow 上有很多问题似乎都在问同样的问题,但没有一个答案非常具体。例如 this answer指定如果对同一区域进行更改,则会发生冲突,但这让我想知道这些区域到底是什么。它只是对同一行所做的更改,还是考虑了某些上下文?
最佳答案
它是一行一行的,答案是“否”和"is":上下文确实很重要,但重要的数量是棘手的。它比您最初想象的要多或少。
您可能想浏览一下 this answer首先是一个相关的问题,作为背景。我现在假设我们有 base
作为(单个) merge 基础(也许我们通过标记特定提交来设置名称 base
,例如, git tag base $(git merge-base HEAD other)
)和 HEAD
作为我们在分支 b1
上的提交,还有其他一些分支名称 b2
命名另一个提交。
接下来,我们看看两个差异:
git diff base HEAD
git diff base b2
$ git checkout b1
[checkout messages here - but I was already on b1]
$ git diff base HEAD
diff --git a/basefile b/basefile
index df781c1..e4f9e4b 100644
--- a/basefile
+++ b/basefile
@@ -4,6 +4,7 @@
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
+# added line in b1
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
$ git diff base b2
diff --git a/basefile b/basefile
index df781c1..c96620e 100644
--- a/basefile
+++ b/basefile
@@ -4,7 +4,6 @@
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
-# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
$ git merge b2
Auto-merging basefile
CONFLICT (content): Merge conflict in basefile
Automatic merge failed; fix conflicts and then commit the result.
b3
的尖端相反(在我的设置中,
b1
和
b3
的 merge 基数与
b1
和
b2
的 merge 基数相同)。
$ git merge --abort
$ git diff base b3
diff --git a/basefile b/basefile
index df781c1..e2b8567 100644
--- a/basefile
+++ b/basefile
@@ -5,7 +5,6 @@
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
$ git merge --no-edit b3
Auto-merging basefile
Merge made by the 'recursive' strategy.
basefile | 1 -
1 file changed, 1 deletion(-)
patch
实用程序在这里使用不同的算法(“最大模糊”因子,看起来 +/- 那么多行)。 Git 不做模糊因素;如果必须,它将一直搜索到文件的开头或结尾。但是,在确定上下文无法匹配之前,它确实具有调整空白的常用选项。
git apply
应用补丁时,您可以添加
-3
或
--3way
以允许 Git 读取
index
行,这些行提供文件 blob 的部分或完整哈希 ID。左侧的哈希 ID 是文件先前版本的哈希值:请注意,在上述所有差异中,
basefile
的“基本”版本具有 ID
df781c1
。如果 Git 可以从该 ID 中找到唯一的 blob,它可以假装这是 merge 基,并且仅针对
HEAD
比较一个 merge 基,将补丁本身视为另一个差异,并以这种方式进行三向 merge 。这有时允许
git apply
成功,而
patch
会失败.)
关于git - git merge 冲突究竟何时发生,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42693608/
Feel free to skip straight to TL/DR if you're not interested in details of the question 简短的序言: 我最近决定
我一直在阅读 A Tour of Go学习Go-Lang到目前为止一切顺利。 我目前在 Struct Fields类(class),这是右侧的示例代码: package main import "fm
Last time I got confused顺便说一下PowerShell急切地展开集合,基思总结了它的启发式如下: Putting the results (an array) within a
我是一名优秀的程序员,十分优秀!