Dragan Simic <dsimic@xxxxxxxxxxx> writes: > On 2024-03-11 13:55, Junio C Hamano wrote: >> "Ralph Seichter via GitGitGadget" <gitgitgadget@xxxxxxxxx> writes: >> >>> From: Ralph Seichter <github@xxxxxxxxxxx> >>> 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 >> For readability, you probably would want to have a SP before the >> given string, i.e., >> variable = "value" # message comes here > > Let me interject... Perhaps also a tab character before the "# > comment", > instead of a space character. That would result in even better > readability. Depends on your screen width ;-) If you were trying to tell me that SP or no SP is merely a personal preference with the comment, I think you succeeded in doing so. Thanks.