From: Zac Medico Date: Tue, 11 Nov 2008 10:06:30 +0000 (-0000) Subject: Fix pretend output to show git -a option when committing signed manifest. X-Git-Tag: v2.2_rc14~8 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=856b5247042bf7ce4fdd236784d9a8dcc7012846;p=portage.git Fix pretend output to show git -a option when committing signed manifest. svn path=/main/trunk/; revision=11850 --- diff --git a/bin/repoman b/bin/repoman index d2f12fe92..34f169c74 100755 --- a/bin/repoman +++ b/bin/repoman @@ -2089,7 +2089,7 @@ else: if vcs == "svn": print "(svn -q commit -F commitmessagefile)" elif vcs == "git": - print "(git commit -F commitmessagefile)" + print "(git commit -a -F commitmessagefile)" else: fd, commitmessagefile = tempfile.mkstemp(".repoman.msg") mymsg = os.fdopen(fd, "w")