是否有向 git 别名添加注释的正确方法?

Is there a right way of adding comments to git aliases?

许多 git 别名都有很短的 abbreviations/acronyms/TLAs 和很长的、几乎难以理解的命令行。

是否有 'correct' 方法可以为别名添加尾随注释,以便我记住它的用途或从哪里得到它?

是否取决于它是通过 git config --global alias.<shrt> 'cmd' 命令创建的还是直接编辑我的 .gitconfig 文件创建的,以及它是否是 shell ! 命令等等

要是有'one size fits all'方法就好了

配置文件有注释语法,使用它。

git help configSyntax部分的前两句:

   The syntax is fairly flexible and permissive; whitespaces are mostly ignored.
   The # and ; characters begin comments to the end of line, blank lines are ignored.