克隆 git 存储库时如何不丢失分支
我们有一个 git svn 存储库,它从 svn 获取并显示所有分支。 然后我们就有了一个人们可以推送的裸克隆,它只显示在 git-svn 存储库上有跟踪分支的分支。为所有事情建立一个跟踪分支是一件痛苦的事情。
有没有办法在克隆时保留所有分支?
we have a git svn repo that fetches from svn and shows all the branches.
we then have a bare clone of that which people can push to which only shows branches that have tracking branches on the git-svn repo. it's a pain having to make a tracking branch for everything.
is there some way to keep all the branches when cloning?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你使用了 git --mirror 选项吗,它意味着 --bare 所以只需替换它
did You used git --mirror option, it implies --bare so just replace it
我相信您需要在克隆命令中指定您希望它镜像所有分支。
I believe you need to specify in your clone command that you want it to mirror all branches.