]> git.mjollnir.org Git - scripts.git/commitdiff
Added no printing info about untracked files to newfgits
authorPenny Leach <penny@mjollnir.org>
Mon, 21 Feb 2011 14:44:07 +0000 (15:44 +0100)
committerPenny Leach <penny@mjollnir.org>
Mon, 21 Feb 2011 14:44:07 +0000 (15:44 +0100)
bin/newfgits

index c5746ca974aa5509b1b1097d745ae2f5c557817e..f3caa1d98b313651a804f1ec50b7968a69c77603 100755 (executable)
@@ -25,7 +25,9 @@ GITPATH=$GITPATH/$SUBPATH
 GIT_DIR=~/.fgits/$REPO.git git init --bare && cd .fgits/$REPO.git \
     && git remote add origin ssh://$GITSERVER$GITPATH/$REPO.git \
     && git config core.bare false && git config core.worktree ../../ \
-    && git config branch.master.remote origin && git config branch.master.merge refs/heads/master
+    && git config branch.master.remote origin && git config branch.master.merge refs/heads/master \
+    && git config status.showUntrackedFiles no
+
 
 ssh $GITSERVER "GIT_DIR=$GITPATH/$REPO.git git init-db"