URI: 
       tgit commit: added -n switch - gitzone - git-based zone management tool for static and dynamic domains
  HTML git clone https://git.parazyd.org/gitzone
   DIR Log
   DIR Files
   DIR Refs
       ---
   DIR commit 820679ef346aea34c988a22435437c1a24815e14
   DIR parent acf211293cdf73db33da13d41de2731c2043ce23
  HTML Author: tg(x) <*@tg-x.net>
       Date:   Tue,  5 Apr 2011 02:20:28 +0200
       
       git commit: added -n switch
       
       Diffstat:
         M bin/gitzone                         |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/bin/gitzone b/bin/gitzone
       t@@ -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
       t@@ -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;