What is the recommended gitattributes settings for the following files:
- .user
- .suo
- .cache
- .application
- .asax
- .manifest
It's a C# repo under windows OS.
Not sure about .application, .asax, and .manifest files, but for .user, .suo, and .cache files, GitHub recommends ignoring those files in .gitignore. If they're ignored, then you shouldn't need to worry about configurations for them in .gitattributes, since, well, they won't be included in your repo.
The following are lines from the standard GitHub .gitignore for C# projects:
# User-specific files *.suo *.user # Others *.Cache
.gitattributesfile for you.