Skip to content
Snippets Groups Projects
Verified Commit 608f70dd authored by Laurent Heirendt's avatar Laurent Heirendt :airplane:
Browse files

add slide for gitignore

parent e021ec2d
No related branches found
No related tags found
No related merge requests found
# 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
\ No newline at end of file
......@@ -2,6 +2,7 @@
{ "filename": "index.md" },
{ "filename": "overview.md" },
{ "filename": "gettingStarted.md" },
{ "filename": "ignore.md" },
{ "filename": "amend.md" },
{ "filename": "reset.md" },
{ "filename": "revert.md" },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment