From: Penny Leach Date: Mon, 21 Feb 2011 14:44:07 +0000 (+0100) Subject: Added no printing info about untracked files to newfgits X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=3d8e52841788c0f5eefbb8d3e9768d4dcbfe6644;p=scripts.git Added no printing info about untracked files to newfgits --- diff --git a/bin/newfgits b/bin/newfgits index c5746ca..f3caa1d 100755 --- a/bin/newfgits +++ b/bin/newfgits @@ -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"