commit 820679ef346aea34c988a22435437c1a24815e14
parent acf211293cdf73db33da13d41de2731c2043ce23
Author: tg(x) <*@tg-x.net>
Date: Tue, 5 Apr 2011 02:20:28 +0200
git commit: added -n switch
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/bin/gitzone b/bin/gitzone
@@ -281,7 +281,7 @@ sub pre_receive {
check_what_changed($old, $new);
load_repo_config;
process_files;
- git "commit -m 'auto increment: @changed_files'", 1 if @changed_files;
+ git "commit -nm 'auto increment: @changed_files'", 1 if @changed_files;
save_list_file;
# save new commits in a new branch
@@ -368,7 +368,7 @@ sub update_record {
print FILE for @newfile;
close FILE;
- git "commit -m 'update-record: $file' '$file'", 1;
+ git "commit -nm 'update-record: $file' '$file'", 1;
process_files $file;
install_zones if @zones;