From: Zac Medico Date: Mon, 17 Nov 2008 08:58:51 +0000 (-0000) Subject: Add missing -a option for git commits. (trunk r11976) X-Git-Tag: v2.1.6_rc1~47 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=46970d9aaa51aa51d3f2816f4407f6d644ae803a;p=portage.git Add missing -a option for git commits. (trunk r11976) svn path=/main/branches/2.1.6/; revision=11977 --- diff --git a/bin/repoman b/bin/repoman index 7abbcdb5f..c4225a5c9 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: