代码之家  ›  专栏  ›  技术社区  ›  Wombattle

通过命令行在SVN中保留时间戳

  •  3
  • Wombattle  · 技术社区  · 7 年前

    我们想使用 svn update --config-option config:miscellany:use-commit-times=yes 而不是本地更改配置文件。但是,该命令会导致 svn: E020024: Error resolving case of 'config:miscellany:use-commit-times=yes' . 此外,更改 servers-config 具有 svn update --config-option servers:global:http-proxy-port=2 (仅作为进一步的示例)也不可能。

    我们使用svn 1.9.6和Win7。

    问候语

    1 回复  |  直到 7 年前
        1
  •  2
  •   Fede Garcia    7 年前

    首先尝试进行清理签出:

    svn checkout --config-option config:miscellany:use-commit-times=yes <repo-url>
    

    然后每次更新时:

    svn update --config-option config:miscellany:use-commit-times=yes