Slightly better description to hopefully prevent any confusion. Note it's also important to add an carriage return/line feed at last line of script:
echo Skybuck Flying Here ! echo echo This script create a filter for this git repository echo echo 1. To turn two spaces into one tab on checkout echo 2. To turn one tab into two spaces on commits echo echo For the following Pascal/Delphi file extensions: echo echo pas dpr dpk inc dfm xfm fmx lfm nfm dpkw echo echo This script requires GnuWin32 CoreUtils package to be installed. echo echo Which can be found here: echo http://gnuwin32.sourceforge.net/packages.html echo and here: echo http://gnuwin32.sourceforge.net/packages/coreutils.htm echo echo After installation its bin folder needs to be on the path environment echo So that expand.exe and unexpand.exe can be found and executed. echo echo To run this script type: ./CreateSpacesToTabsFilter.sh echo md ".git/info" mkdir .git/info echo "*.pas filter=tabspace2" > .git/info/attributes echo "*.dpr filter=tabspace2" >> .git/info/attributes echo "*.dpk filter=tabspace2" >> .git/info/attributes echo "*.inc filter=tabspace2" >> .git/info/attributes echo "*.dfm filter=tabspace2" >> .git/info/attributes echo "*.xfm filter=tabspace2" >> .git/info/attributes echo "*.fmx filter=tabspace2" >> .git/info/attributes echo "*.lfm filter=tabspace2" >> .git/info/attributes echo "*.nfm filter=tabspace2" >> .git/info/attributes echo "*.dpkw filter=tabspace2" >> .git/info/attributes Bye, Skybuck. -- You received this message because you are subscribed to the Google Groups "Git for human beings" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/git-users/192b0aca-e8ef-4e75-9e57-82b053f1841bn%40googlegroups.com.
