Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
一位同事合并了一堆破坏构建的文件。我需要恢复到工作版本,然后提交该版本。我想做整个树。
要获得版本:“Hg update 4”这将检索文件的版本 4。
我不确定如何提交更改并删除签入的任何内容。
注意:转到每个文件并进行合并需要很长时间,所以我希望恢复整个树。
我也在用乌龟HG。
任何意见,将不胜感激。感谢:D
hg up -r 4 <some edits> hg ci -m "This is correct" hg push -f