summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-11-17 08:58:51 +0000
committerZac Medico <zmedico@gentoo.org>2008-11-17 08:58:51 +0000
commit46970d9aaa51aa51d3f2816f4407f6d644ae803a (patch)
treebb30b959e11b07d8d41595ea3f86167b05f92dbd
parent95b4ed9b94af6e38f551e5bd1def41e920d0a4c5 (diff)
downloadportage-46970d9aaa51aa51d3f2816f4407f6d644ae803a.tar.gz
portage-46970d9aaa51aa51d3f2816f4407f6d644ae803a.tar.bz2
portage-46970d9aaa51aa51d3f2816f4407f6d644ae803a.zip
Add missing -a option for git commits. (trunk r11976)
svn path=/main/branches/2.1.6/; revision=11977
-rwxr-xr-xbin/repoman4
1 files 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: