Git configuration files
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
*.DS_Store Library/ Output/ Temp/ *.sln *.suo *.userprefs obj/ *.keystore *.csproj *.pidb *.csproj.user *.unityproj *.booproj |
.gitattributes
Adapt the line endings for files here.
|
1 |
*.txt eol=crlf |
Mercurial
.hgignore
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
syntax: glob Library obj Output Temp *.pidb *.sln *.suo *.userprefs *.csproj *.unityproj *.orig *.DS_Store *.booproj |