Rationale: All git built-in commands print a newline upon upon git <cmd> --git-completion-helper. Therefore git-send-email should follow suit for consistency. Signed-off-by: Thiago Perrotta <tbperrotta@xxxxxxxxx> --- git-send-email.perl | 1 + 1 file changed, 1 insertion(+) diff --git a/git-send-email.perl b/git-send-email.perl index e65d969..e991bf3 100755 --- a/git-send-email.perl +++ b/git-send-email.perl @@ -115,6 +115,7 @@ sub usage { sub completion_helper { print Git::command('format-patch', '--git-completion-helper'); + print "\n"; exit(0); } -- 2.32.0