Switch to the competition
branch to use this repository. The master
branch contains only the base Road Runner code.
To switch to the competition
branch:
- In Android Studio
- Use the git menu and select Branches
- Select Remote -> origin -> competition
- Then click Checkout
- On the GitHub web page, select
competition
from the drop-down in the top left of the repository code page - Using git CLI, type
git checkout competition
This follows the FTC branching guidance here.
This follows the steps here and assumes all commands are run using the git CLI from the root directory of your clone:
git remote add upstream https://github.com/acmerobotics/road-runner-quickstart
git checkout master
git fetch upstream
git merge upstream/master
git push origin master
git checkout competition
git merge master
Check out the docs.