svn path=/main/branches/2.1.6/; revision=11977
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")
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: