From e7f8e0a146be148d9170ebdec08d2fe6884a1c11 Mon Sep 17 00:00:00 2001 From: Kaiyu Zheng Date: Mon, 14 Nov 2022 16:31:23 -0500 Subject: [PATCH] added projects directory, and gitignored it --- .gitignore | 4 +++- projects/README.md | 9 +++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 projects/README.md diff --git a/.gitignore b/.gitignore index 4f92530..4ed5f32 100644 --- a/.gitignore +++ b/.gitignore @@ -96,4 +96,6 @@ spot/ros_ws/src/rbd_spot_perception/maps/bosdyn/**/*.zip *.bag ## Ignore yolov5 weights -spot/ros_ws/src/rbd_spot_perception/models/yolov5 \ No newline at end of file +spot/ros_ws/src/rbd_spot_perception/models/yolov5 + +projects/ \ No newline at end of file diff --git a/projects/README.md b/projects/README.md new file mode 100644 index 0000000..22a1413 --- /dev/null +++ b/projects/README.md @@ -0,0 +1,9 @@ +This directory contains files for custom projects. The +entire content of the directory is ignored by git. You can +use this directory to place whatever you like and have that +mirrored and accessible within the docker container's +robotdev directory. + +For example, you can put the repositories for your projects here. +Those repositories _won't_ and _shouldn't_ become submodules of robotdev +because only _you_ (or your teammates) need them.