我使用 subgit 从 svn 存储库创建一个独立镜像作为 git 存储库,使用subgit configure --layout auto SVN_REPO
. 主要功能运行良好,但我正在尝试将 svn 作者映射到 git 用户名,反之亦然,
通过使用subgit configure --layout auto SVN_REPO
映射文件authors.txt
自动创建,如其文档中所述
user1 = user1 <user2@localhost>
user2 = user2 <user2@localhost>
...
我试图以authors.txt
一种看起来像的方式修改文件
user1 = peter <peter@localhost>
user2 = rob <rob2@localhost>
...
之后我subgit fetch
在 subgit 安装文件夹中发出命令。但是,我仍然在克隆的 git 存储库中看到旧映射(使用user1
, ...)而不是名称本身。user2
我应该怎么做才能让 subgit 使用我的作者映射?我应该再次发出命令以使用新文件subgit configure
导入整个 svn 存储库吗?authors.txt