如何读取 git svn 内部配置值

问题描述 投票:0回答:1

我想读取

svn-remote.svn.branches-maxRev
配置值。 注意到它不在
.config
文件中,而是在
<project>\.git\svn\.metadata

当我执行 git svn clone 命令时,我可以看到它使用设置值

'C:\Program Files\Git\mingw64\libexec\git-core\git.exe' config svn-remote.svn.branches-maxRev 12094

但是当我尝试阅读它时

'C:\Program Files\Git\mingw64\libexec\git-core\git.exe' config svn-remote.svn.branches-maxRev
它给出了空结果(我认为它只能从
.config
文件中读取)

如何从

.metadata
文件中读取并获取此配置值。

[我正在使用 Windows + git bash]

git svn version-control git-svn
1个回答
0
投票

下面是命令

git config --file=<local_repo_dir>/.git/svn/.metadata svn-remote.svn.branches-maxRev

谢谢@phd

© www.soinside.com 2019 - 2024. All rights reserved.