.
├── images
├── src
│ ├── computer-vision
│ ├── hardware
│ ├── rpi
│ ├── desktop
│ └── stm32
├── project_plan
│ ├── project_charter.md
│ └── project_tasks_n_schedule.md
└── report
└── report.md
First install git and oben git bash
in a directory where you want to clone the repo. Then clone the repo with:
git clone https://github.com/kcir-roberto/projects-jj-eclipse.git
In order to avoid conflicts, everybody should use their own branch. Please do not commit to master. To check on which branch you are, run
git branch --show-current
If it shows main
, don't create any commits. Instead, switch to your branch using:
git checkout <your branch>
Or, if you don't have a branch yet, create one with:
git branch <your branch>
Please, as a name of your branch select your name/topic
. This way its visible who is the owner and what is the purpose of the branch.
Once you are on your branch, use git add
, git commit
and git push
to manage your stuff.
The basics of markdown syntax you will find here: markdown basic syntax.