naming fixes, terminal title fixes
[feisty_meow.git] / scripts / rev_control / git_scruncher.sh
1 #!/bin/bash
2
3 source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh"
4
5 save_terminal_title
6
7 # check for whether we see a .git folder.
8 if [ ! -d ".git" ]; then
9   echo This script needs to run in the directory where a git repository lives,
10   echo but we do not see a .git directory here.
11   exit 1
12 fi
13
14 # makes git checkouts not be as intensive on the server.
15 git config --global pack.windowMemory "100m"
16 git config --global pack.SizeLimit "100m" 
17 git config --global pack.threads "1"
18
19 restore_terminal_title