fix .gitignore not tracking existing folders (#5946)
Browse files* fix .gitignore not tracking existing folders
fix .gitignore so that the files that are in the repository are actually being tracked.
Everything in the data/ folder is ignored, which also means the subdirectories are ignored. Fix so that the subdirectories and their contents are still tracked.
* Remove data/trainings
Co-authored-by: Glenn Jocher <glenn.jocher@ultralytics.com>
- .gitignore +5 -1
.gitignore
CHANGED
@@ -26,7 +26,11 @@
|
|
26 |
storage.googleapis.com
|
27 |
runs/*
|
28 |
data/*
|
29 |
-
|
|
|
|
|
|
|
|
|
30 |
!data/images/zidane.jpg
|
31 |
!data/images/bus.jpg
|
32 |
!data/*.sh
|
|
|
26 |
storage.googleapis.com
|
27 |
runs/*
|
28 |
data/*
|
29 |
+
data/images/*
|
30 |
+
!data/*.yaml
|
31 |
+
!data/hyps
|
32 |
+
!data/scripts
|
33 |
+
!data/images
|
34 |
!data/images/zidane.jpg
|
35 |
!data/images/bus.jpg
|
36 |
!data/*.sh
|