现在我们要从SVN迁移到Git,所以我期待并行使用它们一段时间,所以我需要能够每个开发人员{{1} } 我做了什么:
git svn dcommit
)local1
+ git svn init
- 导入SVN提交git svn fetch
)问题在于local2
我可以local1
和git svn dcommit
而不是git svn rebase
(收到错误{{1} })。
我发现问题是 - local2
中没有SVN配置,也没有Unable to determine upstreaam SVN information from working tree history
。
如果我在local2
上.rev_map
- 它没有帮助。
因此,我需要为每个本地Git仓库“集中”创建SVN信息,因此每个开发人员都可以这样做
git svn init
+ local2
,但是如何?