Otto Barrows
Otto Barrows

Reputation: 499

What is the recommended gitattributes settings?

What is the recommended gitattributes settings for the following files:

It's a C# repo under windows OS.

Upvotes: 4

Views: 1365

Answers (1)

user456814
user456814

Reputation:

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

Upvotes: 1

Related Questions