turned off autocrlf because I'm having too much trouble with it, update bootstrap.sh to remove .gitignore and .gitmodules that are copied

moveTools
Adam Veldhousen 2015-08-07 13:59:53 -05:00
parent 921628882b
commit 0b93d2ac45
Signed by: adam
GPG Key ID: 6DB29003C6DD1E4B
2 changed files with 3 additions and 1 deletions

View File

@ -86,7 +86,7 @@
# Make `git rebase` safer on OS X # Make `git rebase` safer on OS X
# More info: <http://www.git-tower.com/blog/make-git-rebase-safe-on-osx/> # More info: <http://www.git-tower.com/blog/make-git-rebase-safe-on-osx/>
trustctime = false trustctime = false
autocrlf = input autocrlf = false
editor = $EDITOR editor = $EDITOR
[color] [color]

View File

@ -65,6 +65,8 @@ fi
echo "" echo ""
echo "Cleaning up..." echo "Cleaning up..."
rm -rf ${dest}/.git rm -rf ${dest}/.git
rm -rf ${dest}/.gitmodules
rm -rf ${dest}/.gitignore
rm -rf ${dest}/bootstrap.sh rm -rf ${dest}/bootstrap.sh
rm -rf ${dest}/remove.sh rm -rf ${dest}/remove.sh
rm -rf ${dest}/README.md rm -rf ${dest}/README.md