-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathgitignore
More file actions
20 lines (19 loc) · 760 Bytes
/
gitignore
File metadata and controls
20 lines (19 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# We want to be sure to, by default, exclude from source control files containing data
# such as CSVs and images such as PNGs. But note that sometimes there are cases where
# it is reasonable to include those in source control, and the user must just do `git add -f`
# to add them. The message users get when trying to add an ignored file gives this instruction.
# See also
# https://docs.github.com/en/github/getting-started-with-github/getting-started-with-git/ignoring-files#configuring-ignored-files-for-all-repositories-on-your-computer
# By default, all files should be ignored by git.
*.*
# Now, allow the file types that we do want to track via source control.
!*.ipynb
!*.py
!*.r
!*.R
!*.wdl
!*.sh
# Allow documentation files.
!*.md
!*.rst
!LICENSE*