1
0
Fork 0
mirror of https://git.ludikovsky.name/git/fugitive.git synced 2024-09-28 14:25:26 +02:00

will manage exclude list another, more clever way

This commit is contained in:
p4bl0 2010-07-23 11:21:47 +02:00
parent c2963c6f1f
commit 627ac7472a
2 changed files with 2 additions and 6 deletions

View file

@ -1,2 +0,0 @@
*~
*.html

View file

@ -53,10 +53,8 @@ EOF
git add fugitive/templates/* fugitive.css >/dev/null
git commit -m "fugitive inital import" >/dev/null
echo "done."
echo -n "Preventing git to track generated html files... "
(base64 -d | gunzip) > .git/info/exclude <<EOF
#INCLUDE:exclude#
EOF
echo -n "Preventing git to track temp files... "
echo "*~" > .git/info/exclude
echo "done."
cd -
echo "Installation complete, please see the README file for an howto."