gpt4 book ai didi

Git 将 master 分支倒回 master 历史中的特定提交

转载 作者:太空狗 更新时间:2023-10-29 13:50:35 25 4
gpt4 key购买 nike

我的 git 存储库中有以下最近的历史记录。

* 7661a06 (HEAD, origin/devConsolidate, devConsolidate) Fix seg fault; OCBA intermediary compares by value() now also
| * 0bbe038 (origin/master, master) Flawed work no seedShift
|/
* 62fe9db Turn on OCBA_DEBUG; nan/inf values in OCBA prior to crash
* 71298c8 Turn on OCBA (non-intermediary); seg fault occurs
* 3693904 No OpenMP, no OCBA; no memory leaks on valgrind
* 9d5686c Disable OpenMP threads
* 80bbc3b Debug (-O0) build now throws exception also
* e148013 Post convert simulation4_NEJMdisutilities [] to at()
* 66cfba9 Post convert OCBA [] to at()
* 32db3be Pre convert OCBA [] to at()
* 4a9f25b Prep for debugging
* 907e88b Found error (vector out of bounds); need to fix from here
* ca6c639 Implement elapsed, iteration, and max time in OCBA
* db68c15 Fix SEG FAULT; OCBA now working (with intermediary)
* f1c6f05 GA now uses OCBA; GA/OCBA params from config file; produces SEG FAULT
| * 3b16dcf (origin/genCRNgraph, genCRNgraph) Generate QALYs test and control independent-sampling
|/
* 001eff2 Merge branch 'OCBAdev'

f1c6f05(后代)之后的所有提交都是为了调试问题。事后看来,我应该创建一个单独的分支来进行调试,但我是在 master 中完成的。现在,在提交 7661a06 中,我修复了这个错误。

我想移动(倒带?)master 分支(或指针),使其位于提交 f1c6f05 处。执行此操作后,我可以根据提交 7661a0662fe9db 之间的差异生成一个补丁,并将其应用于 f1c6f05。因此,我的 git 日志的一部分应该如下所示:

* 7661a06 (origin/devConsolidate, devConsolidate) Fix seg fault; OCBA intermediary compares by value() now also
| * 0bbe038 Flawed work no seedShift
|/
* 62fe9db Turn on OCBA_DEBUG; nan/inf values in OCBA prior to crash
.
.
.
* db68c15 Fix SEG FAULT; OCBA now working (with intermediary)
| * <HASH> (HEAD, origin/master, master) Fix problem and rewind master
|/
* f1c6f05 GA now uses OCBA; GA/OCBA params from config file; produces SEG FAULT
| * 3b16dcf (origin/genCRNgraph, genCRNgraph) Generate QALYs test and control independent-sampling
|/
* 001eff2 Merge branch 'OCBAdev'

我将使用什么命令来实现所有这些?具体来说,我将如何:(1) 移动 master,(2) 生成补丁,以及 (3) 应用补丁?

最佳答案

由于您已经将 master 推送到 origin(origin/master 位于 0bbe038),这将自您推送以来已经从 origin 获取或 pull 的任何人都会造成问题。因此,您可能需要与其他人沟通和协调正在发生的事情,以便他们可以根据需要进行调整。

考虑到这一点,您可以按照以下方式进行操作:

1) 将 master 移回 f1c6f05:

git checkout master
git reset --hard f1c6f05
git push -f origin master

2+3) 无需生成和应用补丁,假设 7661a06 是您修复的唯一相关提交,您可以简单地执行以下操作:

git checkout -b bug-fix-branch master
git cherry-pick 7661a06

您可能会遇到一些小冲突,具​​体取决于所有“调试”提交实际执行的操作,以及它们是否触及 7661a06 提交更改附近的任何内容,但这应该很容易修理。完成后,执行此操作以将该更改 merge 回 master:

git checkout master
git merge bug-fix-branch
git branch -d bug-fix-branch # optional, maybe not desired
git push origin master

此时,其他所有人都需要获取/pull 新的 master 分支,并重新启动他们尚未完成的工作。

如果对他人的干扰是 Not Acceptable ,您也可以这样做:

git checkout master
git revert f1c6f05..62fe9db
git push master

这将在 master 上创建新的提交,撤消所有那些“调试”提交的影响,但实际上不会将它们从历史记录中删除。所以你的工作目录的结束内容应该看起来是一样的,但历史看起来会很不一样。在这种情况下,应该不会对其他人造成干扰,因此根据您的环境/工作流程,这可能是更好的选择,但它确实会为后代记录所犯的错误,并且可能会在您需要时造成困惑/问题使用 git bisect 来追踪新的错误或其他东西......

关于Git 将 master 分支倒回 master 历史中的特定提交,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17110935/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com