如何在不指定修订号的情况下将 git svn 重置为 HEAD 修订版?

发布于 2024-09-29 21:56:47 字数 43 浏览 2 评论 0原文

如何在不指定修订号的情况下将 git svn 重置为 HEAD 修订版?

How can I do a git svn reset to HEAD revision without specifying the revision number?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

喜爱皱眉﹌ 2024-10-06 21:56:47

听起来你想要的不是 git svn reset 而是一个简单的 git checkout 。当你说你恢复到较旧的版本时,我不确定你的意思是什么,但它可能是这样的,

$ git log
# scan through the log looking for a particular commit.
# You find it and its SHA1 is abc123...
$ git checkout abc123
You are now in 'detached HEAD' state blah blah blah...

现在,HEAD(在你的 git 存储库中)指的是使用 SHA1 abc123 的提交,而 HEAD(在中央 SVN 存储库中) ) 指 SVN 存储库上的最新提交。如果您以相当典型的方式进行了设置,那么您只需执行 git checkout master ,然后执行 git svn rebase 即可恢复正常工作状态。

It sounds like what you want is not a git svn reset but a simple git checkout. I'm not sure what you mean when you say you reverted to an older revision, but it may have been something like

$ git log
# scan through the log looking for a particular commit.
# You find it and its SHA1 is abc123...
$ git checkout abc123
You are now in 'detached HEAD' state blah blah blah...

Now, HEAD (in your git repository) refers to the commit with SHA1 abc123, whereas HEAD (in the central SVN repository) refers to the newest commit on the SVN repository. If you have things set up in a fairly typical way, then you can just do git checkout master and then git svn rebase and you're back to normal working conditions.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文