如何使用 git svn 克隆多个分支,但不是全部?
How do I use git svn to clone more than one branch, but not all?
克隆整个 svn 存储库很简单:git svn clone svn://somesvnrepo --std-layout (or use --branches=/branches)
。
克隆单个分支也很简单,git svn clone svn://somesvnrepo/branches/mybranch
但是我如何 git svn clone 多个特定的分支?假设我想获取 /branches/red
、/branches/green
和 /branches/blue
.
尝试以下命令并添加要克隆的所有分支:
git svn clone -s --prefix=svn/ -b branches -b branches/red -b branches/green -b branches/blue
克隆整个 svn 存储库很简单:git svn clone svn://somesvnrepo --std-layout (or use --branches=/branches)
。
克隆单个分支也很简单,git svn clone svn://somesvnrepo/branches/mybranch
但是我如何 git svn clone 多个特定的分支?假设我想获取 /branches/red
、/branches/green
和 /branches/blue
.
尝试以下命令并添加要克隆的所有分支:
git svn clone -s --prefix=svn/ -b branches -b branches/red -b branches/green -b branches/blue