Load and parse .gitignore files (or any list of pattern strings using the same pattern syntax) to produce an IgnoreList, which can be used to ignore specific files and folders during (for example) a file copy operation.
Ignore nuget content files in git:
- Generate entries in the .gitignore file to exclude nuget content files from the source repository
- Restore nuget content files before building (Automatically in VS and manually with a powershell script
- Use Initialize-GitIgnore to add it to an existing...
More information