I want to read the svn-remote.svn.branches-maxRev
config value.
Noticed that it is not in the .config
file, but in <project>.gitsvn.metadata
When I execute git svn clone command, I can see it sets the value using
'C:Program FilesGitmingw64libexecgit-coregit.exe' config svn-remote.svn.branches-maxRev 12094
But when I try to read it
'C:Program FilesGitmingw64libexecgit-coregit.exe' config svn-remote.svn.branches-maxRev
it gives empty result (I think it only reads from .config
files)
How to read from the .metadata
file and get this config value.
[I am using windows + git bash]
1
Below is the command
git config --file=<local_repo_dir>/.git/svn/.metadata svn-remote.svn.branches-maxRev
Thanks @phd