Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • authorsFileEncoding = ENCODING
    Anchor
    core.authorsFileEncoding
    core.authorsFileEncoding

    encoding in which authors mapping information is present. The default value is UTF8.

     
  • defaultDomain = DOMAIN

    domain to be used to generate Git committer email when authors mapping is not defined or does not provide an email address for a particular committer.
     
  • failSafe = [auto|svn|git]
    Anchor
    core.failSafe
    core.failSafe

    a way SubGit handles translation failures. There are three possible options:
    • auto – failed translation results in commits or pushes to be blocked on the side to which translation has failed.
    • svn – commits to Subversion are never being blocked.
    • git – pushes to Git are never being blocked.
    Find more details in "Error recover" user manual
  • pathEncoding = ENCODING
    Anchor
    core.pathEncoding
    core.pathEncoding

    encoding to be used to store paths in Git tree objects. The default value is UTF8.
     
  • gitPath = PATH
    Anchor
    core.gitPath
    core.gitPath

    a path to Git executable. If this option is set, Git executable will be used to stream large files and perform Git garbage collection that can significantly decrease memory and disk space consumption.
     
  • streamFileThreshold = SIZE
    Anchor
    core.streamFileThreshold
    core.streamFileThreshold

    file size in bytes. SubGit loads the entire file into memory if its size less than this threshold; if the file is larger than the threshold, SubGit sends it as a stream. The option is not set by default, but SubGit sets the threshold to 50MB when the option is not set, so default threshold is 50MB. Note, the bigger the threshold is, the more likely to run into OutOfMemory error.
     
  • javaHome = PATH
    Anchor
    core.javaHome
    core.javaHome

    a path to Java home directory; this Java RE will be used to run hooks.

...