- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
从 git merge documentation 中提取的递归 merge 策略的定义.
This can only resolve two heads using a 3-way merge algorithm. When there is more than one common ancestor that can be used for 3-way merge, it creates a merged tree of the common ancestors and uses that as the reference tree for the 3-way merge. This has been reported to result in fewer merge conflicts without causing mismerges by tests done on actual merge commits taken from Linux 2.6 kernel development history. Additionally this can detect and handle merges involving renames. This is the default merge strategy when pulling or merging one branch.
The recursive strategy can take the following options:
如前所述,递归策略是默认策略,它使用三向递归 merge 算法(解释 here 和 Wikipedia)。
我的理解是必须手动解决冲突的 hunk,它们通常表示为这样
<<<<<<<<<<<
developer 1's code here
============
developer 2's code here
>>>>>>>>>>>
递归 merge 策略的我们的选项记录如下:
This option forces conflicting hunks to be auto-resolved cleanly by favoring our version. Changes from the other tree that do not conflict with our side are reflected to the merge result. For a binary file, the entire contents are taken from our side.
This should not be confused with the ours merge strategy, which does not even look at what the other tree contains at all. It discards everything the other tree did, declaring our history contains all that happened in it.
现在假设我有两个分支 Y 和 M 的头,它们有一个共同的基础祖先 B,如下所示
当使用默认递归策略 merge Y 和 M 时,第 30 行将变为 Print("hello");
,因为在第 30 行,Y 表示对基祖先的更改,而 M 没有。但是如果我在分支 M 上运行
git merge -s recursive -X ours Y
第 30 行会在 merge 后的输出中变成 Print("bye");
吗?
对于那些认为这很明显的人,请注意我们的选项声明
This option forces conflicting hunks to be auto-resolved cleanly by favoring our version.
但是(据我所知)第 30 行没有冲突的 block 。
为了完整起见,我还将提供他们的选项的文档:
This is the opposite of ours.
我们的策略的文档如下:
This resolves any number of heads, but the resulting tree of the merge is always that of the current branch head, effectively ignoring all changes from all other branches. It is meant to be used to supersede old development history of side branches. Note that this is different from the -Xours option to the recursive merge strategy.
所以回到上面的例子,如果我跑了
git merge -s ours Y
在分支 M 上,很明显第 30 行在 merge 输出中将是 Print("bye");
。在这种情况下,为什么也没有他们的策略?我怎样才能实现与我们的策略相同和相反的行为?
我问这个问题是因为我正在做一个项目,只要开发分支上的代码成功构建,我就希望使用另一个开发分支的更改定期并完全覆盖 master 分支。这样我就可以确保我的开发分支永远不会偏离 master 分支太远,而且 master 分支上的代码将成功构建。
我看过this question推荐解决方案
git checkout dev-branch
git merge -s ours master
但是 Git 只是简单地输出 Already up-to-date
,尽管这两个分支包含不同的代码(而 dev-branch
实际上是提前了一些提交) master
).
我目前的解决方案是这样做
git merge -s recursive -X theirs dev-branch
我也看到了this question建议使用递归 策略的他们的 选项。但是由于递归策略的我们的选项与我们的策略明显不同,因此他们的选项也是如此递归 策略与我正在谈论的他们的 策略不同。
最佳答案
git merge -s recursive -X ours Y
will line 30 becomePrint("bye");
in the merged output?
不,它还会输出Print("hello");
。这是因为只有对方(Y
分支)改变了这个文件,M
分支上的文件版本与它们的祖先B
相同,所以递归 merge 策略保留 Y
分支的更新版本。
你可以试试:只有来自 M
分支的文件版本与它们的祖先 B
不同(例如将 30 行更改为 Print( “bye1”);
), 然后 -X
选项就可以工作了。现在,如果您使用 git merge -s recursive -X ours Y
,输出将是 Print(“bye1”);
。
您还可以在 article you linked 的图 4 中找到,如果文件的一侧与其祖先相同(如第 30 和 70 行),则文件将保留另一侧(更改的)版本作为 merge 结果。
Reason for
git merge -s ours Y
output Print("bye");:
正如文件所说,这解决了任意数量的头,但 merge 的结果树始终是当前分支头的树,有效地忽略所有其他分支的所有更改。
这意味着它将忽略 Y
分支的版本,只保留当前分支的版本。所以你得到的输出是 M
branch Print("bye");
的版本。
Why there is no
git merge -s theirs
for -s option:
Git 只定义了octupus、ours、recursive、resolve 和subtree 的 merge 策略,因此无法识别 -s theirs
,这是一个设计问题。具体原因,可能只有git版本控制系统的开发者才知道。
对于您的情况(确保 development
分支覆盖 master
分支),您可以cherry-pick
使用 -X theirs
选项从开发分支到主分支的最新提交:
# On master branch
git cherry-pick development -X theirs
这将完全覆盖 master
分支。
注意 git cherry-pick
命令中的development
表示development
分支指向的commit ( development
分支的最新提交)。您也可以改用提交的 sha-1 值。
关于git - (Git Merging) 何时使用 'ours' 策略、 'ours' 选项和 'theirs' 选项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45402742/
我时不时地输入“git”,然后想到别的东西,然后输入例如“git checkout master”。当然,这给我留下了 $ git git checkout master git: 'git' is
我做到了 git 克隆 git://foo.git 光盘富 ...编辑文件.. 现在我想重新开始。我不在乎我已经做出的任何改变,但我不想再次克隆整个巨型 foo.git,只是丢失我所有的更改。我怎
我在我的电脑上开发代码,我的计算节点很少。 为了让我的程序保持同步,我决定使用 git。以前,我以一种单向模式使用它来“下推”从 PC 到计算节点的更改。但是时不时遇到计算节点特有的小bug,现场修复
虽然它似乎什么也没做,但它没有给出任何警告或错误消息。有什么想法吗? 最佳答案 来自 Git 源的注释: /* * Read a directory tree. We currently ignor
我知道如何为这样的 HTTPS 请求提供用户名和密码: git clone https://username:password@remote 但我想知道如何像这样向 Remote 提供用户名和密码:
Git GUI、Git Bash 和 Git CMD 之间有什么区别?我是初学者,为了进行安装,我发现自己通常同时使用 git bash 和 git CMD 最佳答案 Git CMD 就像使用 git
有人能告诉我git中文件索引被删除是什么意思吗?这些文件在我的 VS Code 中标记为红色,但我仍然可以修改文件并将更改推送到将反射(reflect)这些更改的远程存储库。我认为这一切都是在我使用命
我通过 git 子树将 GLFV 库添加到项目中,但出现此警告“看起来您的 git 安装或您的 git-subtree 安装已损坏”。还描述了几个原因,为什么这可能是: 如 git --exec-pa
我有需要外部 git 项目的 repo,但我不想使用子模块,因为我想在 github 上存档所有文件,所以我认为我只是将具有 git repo 的整个目录添加到 git 但它不t 添加里面的 .git
我有需要外部 git 项目的 repo,但我不想使用子模块,因为我想在 github 上存档所有文件,所以我认为我只是将具有 git repo 的整个目录添加到 git 但它不t 添加里面的 .git
我一直在阅读一篇文章,作者在其中指示:在现有存储库中创建一个新存储库,并想知道这是否是他忽略的错误。稍后我会与他核实。 这些是我要检查的条件: 将现有目录制作成仓库的条件,并且已经 checkin 主
我确实在不同的计算机上处理相同的项目,我想知道是否有一种方法可以跟踪该 .git 文件夹,这样我就不必在所有本地文件中重新配置配置文件。 我将所有工作推送到 bitbucket。 最佳答案 不,没
这个问题在这里已经有了答案: How does git store files? (3 个答案) 关闭 9 年前。 我为我的许多项目创建了一个远程存储库,所以它是我的push 的目的地。与 git
应该如何在 git 中查看文件内容的完整历史记录? 一个文件在 git 中的历史很短,存储库通过 git-svn 同步,但在 svn 中的历史很长。 git 中的历史记录到达文件移动的位置。要查看历史
我是confused here ... 如何对修改后的文件进行git commit,以及如何对新文件进行git commit? 还有,你如何在git中单独提交文件? 最佳答案 git 提交过程分为两个
正在搜索 throw SO 来寻找答案。遇到这个似乎没有给出任何答案的旧线程。重新触发此线程,希望有人知道! 有人能告诉我 git subtree 和 git filter-branch 的区别吗?为
我想知道是否有一种方法可以避免在每个 Git 命令的开头键入单词 git。 如果有一种方法可以在打开命令提示符进入 “Git 模式” 后只使用一次 git 命令就好了。 例如: git> 之后,我们键
当您修改工作目录中的文件时,git 会告诉您使用“git add”暂存。 当您向工作目录添加新文件时,git 会告诉您使用“git add”开始跟踪。 我对这两个概念有点困惑,因为我假设跟踪文件的更改
为什么 git://有效 $ git clone git://github.com/schacon/grit.git Cloning into 'grit'... ... Checking conne
我在以下沙箱中练习 git:https://learngitbranching.js.org/?NODEMO 我在两个单独的 session 中运行了两组命令。第一组命令顺序如下: git clone
我是一名优秀的程序员,十分优秀!