Pascal Maillard glenn-jocher commited on
Commit
922fbd8
1 Parent(s): c45f9f6

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>

Files changed (1) hide show
  1. .gitignore +5 -1
.gitignore CHANGED
@@ -26,7 +26,11 @@
26
  storage.googleapis.com
27
  runs/*
28
  data/*
29
- !data/hyps/*
 
 
 
 
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