代码之家  ›  专栏  ›  技术社区  ›  Jader Dias

如何在subversion配置文件的auto props部分写入多行属性?

  •  0
  • Jader Dias  · 技术社区  · 14 年前

    正确的语法是什么?

    [auto-props]
    *.* = svn:ignore=bin
    obj
    

    [auto-props]
    *.* = svn:ignore=bin;obj
    

    或者没有?是否可以在配置文件中写入多行属性?

    1 回复  |  直到 14 年前
        1
  •  1
  •   Jader Dias    14 年前

    在这个特定的案例中,我发现正确的方法是在配置文件中包含以下行:

    [miscellany]
    ### Set global-ignores to a set of whitespace-delimited globs
    ### which Subversion will ignore in its 'status' output, and
    ### while importing or adding files and directories.
    global-ignores = bin obj
    

    所以我认为同样的语法(空格和行分隔符)也适用于 auto-props

    推荐文章