*** empty log message ***

This commit is contained in:
Alex Schroeder
2011-11-05 13:19:06 +00:00
parent bb294db6bb
commit 42bf6bcd2e
2 changed files with 12 additions and 2 deletions

View File

@@ -1,3 +1,13 @@
2011-11-05 Alex Schroeder <alex@gnu.org>
* modules/git.pl (GitCleanup): No $id for commit.
(GitInitRepository): Add --quiet.
2011-11-04 Alex Schroeder <alex@gnu.org>
* modules/git.pl (GitCleanup): Get rid of git add --all and use
git commit -a instead.
2011-10-23 Alex Schroeder <alex@gnu.org>
* modules/tags.pl (NewTagDeletePage): Return OldTagDeletePage().

View File

@@ -89,7 +89,7 @@ sub GitInitRepository {
WriteStringToFile("$GitDir/$id", $Page{text});
GitRun('add', $id);
}
GitRun('commit', '-m', 'initial import',
GitRun('commit', '--quiet', '-m', 'initial import',
"--author=Oddmuse <$GitMail>");
} else {
chdir($GitDir); # important for all the git commands that follow!
@@ -150,6 +150,6 @@ sub GitCleanup {
# commit the new state
chdir($GitDir); # important for all the git commands that follow!
GitRun('commit', '--quiet', '-a', '-m', 'maintenance job',
"--author=Oddmuse <$GitMail>", $id);
"--author=Oddmuse <$GitMail>");
}
}