如何在不指定修订号的情况下将 git svn 重置为 HEAD 修订版?
如何在不指定修订号的情况下将 git svn 重置为 HEAD 修订版?
How can I do a git svn reset to HEAD revision without specifying the revision number?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来你想要的不是 git svn reset 而是一个简单的 git checkout 。当你说你恢复到较旧的版本时,我不确定你的意思是什么,但它可能是这样的,
现在,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 simplegit checkout
. I'm not sure what you mean when you say you reverted to an older revision, but it may have been something likeNow, 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 thengit svn rebase
and you're back to normal working conditions.