Hi Erik, On Wed, 2022-03-09 at 09:54 +0100, Erik Cervin Edin wrote: > Hi Nuno! > > > Is there any way to remove the default "Notes:" line on git-notes? > > I > > don't really mind to have it in git log but when generating patches > > for > > instance, I would like my notes to be something like: > > Just to be clear, in relation to which command are we talking about? > > For git-format-patch there's > --notes > which I assume doesn't support customization. > Well, this is the one I would like (hoped) that we could do something about. When I do '--notes' in git-format-patch, I will always see: ``` (Typical git commit) ... --- (I just wanted "Notes:" to be removed and my notes to start at the beginning of the line). Notes: (my notes go here) ... AFAICT, git-format-patch looks to be using --pretty=email and I think we can use --pretty in git-format-patch but having to mimic the email format "by hand" is just painful and I was hoping a better way could exist. ``` > For git-log it's possible to customize how notes appear in git-log > using the standard way of formatting log messages, pretty format. > %N > is for the commit notes I'm aware of this and by briefly looking into the source code this seemed the only way to actually remove those predefined strings from notes (I was just hoping I was wrong). > Thanks for the feedback! - Nuno Sá