Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@xxxxxxxxx> --- Documentation/config.txt | 11 +---------- Documentation/i18n-config.txt | 10 ++++++++++ 2 files changed, 11 insertions(+), 10 deletions(-) create mode 100644 Documentation/i18n-config.txt diff --git a/Documentation/config.txt b/Documentation/config.txt index da97097805..ec0f4e2161 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -600,16 +600,7 @@ Environment variable settings always override any matches. The URLs that are matched against are those given directly to Git commands. This means any URLs visited as a result of a redirection do not participate in matching. -i18n.commitEncoding:: - Character encoding the commit messages are stored in; Git itself - does not care per se, but this information is necessary e.g. when - importing commits from emails or in the gitk graphical history - browser (and possibly at other places in the future or in other - porcelains). See e.g. linkgit:git-mailinfo[1]. Defaults to 'utf-8'. - -i18n.logOutputEncoding:: - Character encoding the commit messages are converted to when - running 'git log' and friends. +include::i18n-config.txt[] imap:: The configuration variables in the 'imap' section are described diff --git a/Documentation/i18n-config.txt b/Documentation/i18n-config.txt new file mode 100644 index 0000000000..cc25621731 --- /dev/null +++ b/Documentation/i18n-config.txt @@ -0,0 +1,10 @@ +i18n.commitEncoding:: + Character encoding the commit messages are stored in; Git itself + does not care per se, but this information is necessary e.g. when + importing commits from emails or in the gitk graphical history + browser (and possibly at other places in the future or in other + porcelains). See e.g. linkgit:git-mailinfo[1]. Defaults to 'utf-8'. + +i18n.logOutputEncoding:: + Character encoding the commit messages are converted to when + running 'git log' and friends. -- 2.19.1.647.g708186aaf9