我想检查一个git项目的子文件夹(不检查整个项目)作为svn存储库。如果它在主分支中我没有问题,只需在网址中用tree/master
替换trunk
并svn checkout [modified url]
。
例如,使用像
这样的网址https://github.com/my-repo/tree/master/some/path
仅将/some/path
签出为svn repo
svn checkout https://github.com/my-repo/trunk/some/path
如果不是在主分支上查看某些内容我想查看tree/my-feature-branch
中的内容,怎么办呢?
答案 0 :(得分:1)
只需使用
svn checkout https://github.com/my-repo/branches/your_branch_name/some/path
(branches/your_branch_name
代替trunk
)。