Browse Source

fix .gitignore not tracking existing folders (#5946)

* 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>
modifyDataloader
Pascal Maillard GitHub 2 years ago
parent
commit
922fbd8209
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      .gitignore

+ 5
- 1
.gitignore View File

storage.googleapis.com storage.googleapis.com
runs/* runs/*
data/* data/*
!data/hyps/*
data/images/*
!data/*.yaml
!data/hyps
!data/scripts
!data/images
!data/images/zidane.jpg !data/images/zidane.jpg
!data/images/bus.jpg !data/images/bus.jpg
!data/*.sh !data/*.sh

Loading…
Cancel
Save