From 46970d9aaa51aa51d3f2816f4407f6d644ae803a Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Mon, 17 Nov 2008 08:58:51 +0000 Subject: [PATCH] Add missing -a option for git commits. (trunk r11976) svn path=/main/branches/2.1.6/; revision=11977 --- bin/repoman | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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: -- 2.26.2