当前位置: 代码迷 >> 综合 >> 记录一次Git迁移库记录
  详细解决方案

记录一次Git迁移库记录

热度:49   发布时间:2023-10-31 04:41:27.0
git svn clone svn:地址

git config --add svn-remote.svn/206_svn_branch.url svn:地址
git config --add svn-remote.svn/206_svn_branch.fetch :refs/remotes/svn/206_svn_branch

git svn fetch svn/206_svn_branch
git checkout -b 206_svn_branch svn/206_svn_branch

git cherry-pick 提交记录
  相关解决方案