Big Succes after installing GNU32WinCoreUtils Here is my script so far:
CreateSpacesToTabsFilter.sh: echo Skybuck Flying Here ! echo echo This script create a filter for this git repository echo echo 1. To turn 2 spaces into tabs on checkout echo 2. To turn 1 tab into 2 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 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 for now, Skybuck. P.S.: I may also be interested in converting an entire repo to tabs on a special branchs for increased checkout speeds ?! ;) -- 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/513b97b7-3aa2-4140-b506-3fdd43b9cf89n%40googlegroups.com.
