diff options
author | Zac Medico <zmedico@gentoo.org> | 2008-11-17 08:58:16 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2008-11-17 08:58:16 +0000 |
commit | 0f5e80645229c0937ebc17c73dac537f5f3a8fbd (patch) | |
tree | 22c6e8d16d3e2f719a7fee973a4cd762a7037d25 | |
parent | feb5e3c4bb5dc12494478ab6c9edb2dadb18bbee (diff) | |
download | portage-0f5e80645229c0937ebc17c73dac537f5f3a8fbd.tar.gz portage-0f5e80645229c0937ebc17c73dac537f5f3a8fbd.tar.bz2 portage-0f5e80645229c0937ebc17c73dac537f5f3a8fbd.zip |
Add missing -a option for git commits.
svn path=/main/trunk/; revision=11976
-rwxr-xr-x | bin/repoman | 4 |
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: |