Created
January 17, 2014 13:11
-
-
Save Simounet/8473124 to your computer and use it in GitHub Desktop.
Git's filter tabs to spaces
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*.php filter=tabspace4 | |
*.tpl filter=tabspace4 | |
*.xml filter=tabspace4 | |
*.yml filter=tabspace2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[filter "tabspace4"] | |
smudge = expand --tabs=4 --first-only | |
clean = expand --tabs=4 --initial | |
[filter "tabspace2"] | |
smudge = expand --tabs=2 --first-only | |
clean = expand --tabs=2 --initial |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment