summaryrefslogtreecommitdiffstats
path: root/bin/repoman
diff options
context:
space:
mode:
Diffstat (limited to 'bin/repoman')
-rwxr-xr-xbin/repoman4
1 files changed, 2 insertions, 2 deletions
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: