特定版本签出的 git 等效项是什么,例如“svn checkout -r 123”
与 svn 命令最接近的 git 命令是什么:“svn checkout -r 123 ”?
What would be the closest git command equivalent to a svn command: "svn checkout -r 123 "?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您将使用正确的 SHA1 修订版更新工作树,同时创建分支以隔离您将在该分支中进行的任何新提交。
如果你这样做:
你最终会陷入分离<代码>HEAD模式。
You would update your working tree with the right SHA1 revision, while creating a branch in order to isolate any new commit you will make in that branch.
If you only did:
you would end up in a detached
HEAD
mode.