From 0f5e80645229c0937ebc17c73dac537f5f3a8fbd Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Mon, 17 Nov 2008 08:58:16 +0000 Subject: Add missing -a option for git commits. svn path=/main/trunk/; revision=11976 --- bin/repoman | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin') 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: -- cgit v1.2.3-1-g7c22