使用 git svn clone 将 svn 转换为 git
我正在尝试将 svn 存储库转换为 git。 svn repo的布局有branch/tag/trunk。当我转换为 git (git svn clone) 时,我有完全相同的布局。我得到了分支、标签和主干文件夹。
我注意到许多关于转换为 git 状态的建议我们必须清理标签以使其成为 git 标签。他们声明标签和分支被视为远程分支,标签以“tag/”为前缀。
但是我的 ref/remotes 文件夹完全是空的。我看到我的所有标签都位于我的“标签”文件夹下。以及底层文件夹结构和类。
在 git svn 克隆之后,我的 git 存储库应该是什么样子?它实际上应该具有标签/分支/主干结构吗?我的 svn 存储库?知道为什么我没有像其他人那样遇到标签吗?
感谢您的帮助。
I am attempting to convert a svn repository to git. The layout of the svn repo has the branch/tag/trunk. When I do the conversion to git (git svn clone) I have the exact same layout. I get the branch, tag and trunk folders.
I have noticed that many of the recommendations for converting to git state we must clean up the tags to make them git tags. They state that the tags and branches are viewed as remote branches, tags are prefixed with "tag/".
However my ref/remotes folder is completely empty. I see all of my tags located under my "tag' folder. Along with the underlying folder structure and classes.
After a git svn clone what should my git repo look like? Should it in fact have the tags/branch/trunk structure just like my svn repo? Any idea on why I am not getting the tags to come across as others have?
Thanks for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用 --stdlayout 选项。然后它会正确地为您创建分支和标签。
You need to use the --stdlayout option. Then it will correctly create branches and tags for you.