This is where you can submit your OA!
Before submitting please make sure:
- Your work is in a folder called
your_name. - Your work has a README.md file.
- Your work is tracked in a git repository (run
git initif it's not already!)
**Then to push your code.**
Make sure you're on your own branch. Your branch should be named firstname-lastname.
Then add this repository as a remote using:
git remote add origin https://github.com/WE-Autopilot/ros2-lab.git
Make sure your code is committed by running git status. If the status shows changes make sure to:
git add -A
git commit -m "<Add a message here>"Then push your code using git push -u origin <firstname-lastname>.