Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

.gitignore 1.1 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
  1. # These are some examples of commonly ignored file patterns.
  2. # You should customize this list as applicable to your project.
  3. # Learn more about .gitignore:
  4. # https://www.atlassian.com/git/tutorials/saving-changes/gitignore
  5. # Compiled Java class files
  6. *.class
  7. # Compiled Python bytecode
  8. *.py[cod]
  9. # Log files
  10. *.log
  11. # Package files
  12. *.jar
  13. # Maven
  14. target/
  15. dist/
  16. # JetBrains IDE
  17. .idea/
  18. # Unit test reports
  19. TEST*.xml
  20. # Generated by MacOS
  21. .DS_Store
  22. # Generated by Windows
  23. Thumbs.db
  24. # Applications
  25. *.app
  26. *.exe
  27. *.war
  28. # Large media files
  29. *.mp4
  30. *.tiff
  31. *.avi
  32. *.flv
  33. *.mov
  34. *.wmv
  35. # Data files
  36. data/*
  37. !data/*.dvc
  38. # Created by https://www.toptal.com/developers/gitignore/api/jupyternotebooks
  39. # Edit at https://www.toptal.com/developers/gitignore?templates=jupyternotebooks
  40. ### JupyterNotebooks ###
  41. # gitignore template for Jupyter Notebooks
  42. # website: http://jupyter.org/
  43. .ipynb_checkpoints
  44. */.ipynb_checkpoints/*
  45. # IPython
  46. profile_default/
  47. ipython_config.py
  48. # Remove previous ipynb_checkpoints
  49. # git rm -r .ipynb_checkpoints/
  50. # End of https://www.toptal.com/developers/gitignore/api/jupyternotebooks
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...