Skip to content
Snippets Groups Projects
Forked from R3 / school / courses
457 commits behind the upstream repository.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
ignore.md 313 B

Ignore files

In the file .gitignore, all untracked files that should be ignored by git are listed:

.DS_Store
data
*.csv

If you want to exclude certain files from this list:

!*.yml
config/*.yml

This tracks changes in all yml file, but not in the config folder.

Examples: www.gitignore.io