Resources and Assignments for Two-Wheeled-Self-Balancing-Bot, Semester Project 2021
-
Fork the repo on GitHub: Use the button at the top right.
-
Clone the project to your machine
git clone https://github.com/${your_username}/Two-Wheeled-Self-Balancing-Bot.git
-
Commit your solutions to your own branch:
Create a new branch by
git checkout -b ${your_branch_name}
-
Push your work back up to your fork:
Navigate to the top-level repo directory and:
git add . git commit -m "commit message" git push origin ${your_branch_name}
-
Update the repo on your system by setting an upstream to the
main
branch of this repository and then running -git fetch upstream git checkout main git merge upstream/main