Skip to content

pr-1681/rseichter/issue-1680-v3

From: Ralph Seichter <github@seichter.de>

Introduce the ability to append comments to modifications
made using git-config. Example usage:

  git config --comment "changed via script" \
    --add safe.directory /home/alice/repo.git

based on the proposed patch, the output produced is:

  [safe]
    directory = /home/alice/repo.git #changed via script

Users need to be able to distinguish between config entries made
using automation and entries made by a human. Automation can add
comments containing a URL pointing to explanations for the change
made, avoiding questions from users as to why their config file
was changed by a third party.

The implementation ensures that a # character is unconditionally
prepended to the provided comment string, and that the comment
text is appended as a suffix to the changed key-value-pair in the
same line of text. Multi-line comments (i.e. comments containing
linefeed) are rejected as errors, causing Git to exit without
making changes.

Comments are aimed at humans who inspect or change their Git
config using a pager or editor. Comments are not meant to be
read or displayed by git-config at a later time.

Signed-off-by: Ralph Seichter <github@seichter.de>

Submitted-As: https://lore.kernel.org/git/pull.1681.v3.git.1710280020508.gitgitgadget@gmail.com
In-Reply-To: https://lore.kernel.org/git/pull.1681.git.1709532018372.gitgitgadget@gmail.com
In-Reply-To: https://lore.kernel.org/git/pull.1681.v2.git.1709824540636.gitgitgadget@gmail.com
Assets 2