gpt4 book ai didi

Mercurial:恢复文件

转载 作者:行者123 更新时间:2023-12-04 00:57:37 25 4
gpt4 key购买 nike

我想恢复在某个提交中已被删除的文件,并以不同的名称恢复它,以便它共享历史记录。在颠覆中,我会做

svn cp src@REV dest

即使用 Hook 修订。 Mercurial 中的等价物是什么?

最佳答案

我认为 Mercurial 没有内置的方法来做到这一点。但我认为您可以通过以下方式获得相同的效果:

hg up -C REV # Update to revision containing a copy of the file
<modify the file in question>
hg commit # Create second head based on old revision
hg merge # Merge two heads into one
# Note: make sure to choose to have the file exist
hg commit
hg mv MYFILE MYNEWNAME

这将使文件保留其所有旧历史,因为最好的 Mercurial 可以跟踪它。

关于Mercurial:恢复文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3345662/

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