From: Zac Medico Date: Mon, 17 Nov 2008 08:58:16 +0000 (-0000) Subject: Add missing -a option for git commits. X-Git-Tag: v2.2_rc15~28 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=0f5e80645229c0937ebc17c73dac537f5f3a8fbd;p=portage.git Add missing -a option for git commits. svn path=/main/trunk/; revision=11976 --- diff --git a/bin/repoman b/bin/repoman index 34f88557f..653bb9517 100755 --- a/bin/repoman +++ b/bin/repoman @@ -2057,7 +2057,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") @@ -2069,7 +2069,7 @@ else: if vcs == "svn": retval=os.system("svn -q commit -F "+commitmessagefile) elif vcs == "git": - retval=os.system("git commit -F "+commitmessagefile) + retval=os.system("git commit -a -F "+commitmessagefile) try: os.unlink(commitmessagefile) except OSError: