- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我的 git 存储库有大约 2,000 个提交。出于教育目的,我一直在玩git rebase -i
.
当我输入 git rebase -i first-commit
时(其中 first-commit
是对 repo 的初始提交的标记)并且根本不做任何更改(即保持所有 pick <hash>
不变),git 开始重放我的历史记录,但由于冲突而导致数十次提交失败。什么会导致这个?为什么它不简单地重播我的整个历史?
最佳答案
我尝试用一个开源项目重新创建它,得到了类似的结果,当使用 rebase interactive 在第一次提交之上进行 rebase 时报告了冲突。
我第二次运行它并注意到它发生在同一次提交中。
git clone git://git.lttng.org/lttng-tools.git
git tag first-commit fac6795
git rebase -i first-commit
Could not apply e4baff1... listing and activation of loglevel by number
git rebase --abort
似乎冲突发生在 merge 点附近:
* 843f5df (HEAD, tag: new-tag) API change for lttng_destroy_session prototype
* 90192ee Merge branch 'master'
|\
| * 4dbd54a update loglevel printout
| * e4baff1 listing and activation of loglevel by number
* | 76d45b4 Add support for UST enable all tracepoints
* | 6181537 Cleanup lttng enable event command
|/
* 13dce3b loglevels: allow enable/disable
* 81afa34 Add loglevel to event list
* 57ab763 ABIs now support 256 char event names
虽然使用选项 -p 再次运行 rebase 是成功的:
-p, --preserve-merges
Instead of ignoring merges, try to recreate them.
This uses the --interactive machinery internally, but combining it with the --interactive option explicitly is generally not a
good idea unless you know what you are doing (see BUGS below).
git rebase 将使历史变得更加线性。由于历史上有 merge , merge 点 pull 平时如果有冲突就得解决。
关于git - 幂等 git rebase 因虚假冲突而失败?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9899276/
我试图弄清楚接受 OpenID 登录的网站如何无法通过简单的主机文件更新来指向伪造的 OpenID 提供商。 假设我想侵入 Joe Smith 的帐户,在这个例子中,假设他的 OpenID 提供商是
#include #include #include #include #include #include #include #include #include #include #define P
根据此讨论 - "RESTful API - Correct behavior when spurious/not requested parameters are passed in the req
如果编译为 Cand C++ 源代码,这个简单的代码片段会使用 g++ 4.7.0 生成“函数调用中缺少标记”警告。我相信这是编译器的错误,因为最终的 NULL值(value)就在那里。 #inclu
我读到,有时 && 运算符用于“短路”JavaScript,使其相信返回值 0 是 0 而不是 NaN,因为 0 在 JavaScript 中是一个虚假数字。我一直在四处寻找,想弄清楚这一切意味着什么
我正在使用 Borland(又名“Embarcodegearland”)C++Builder 2007 编译器,它有一个小错误,系统头文件中的某些 static const 项可能导致虚假的 "xyz
我是一名优秀的程序员,十分优秀!