Git - Ignoring files and folders
The idea here is not to have the files or folders show up in the change list in the IDE.
Ignoring untracked files and folders
Versioned configuration:
<repoFolder>/.gitignore
Not versioned configuration:
<repoFolder>/.git/info/exclude
Ignoring tracked files
1 | git update-index --assume-unchanged filepath |