Skip to content

FullMetalFalcons/2024-Phoenixes18813-IntoTheDeep

 
 

Repository files navigation

FullMetalFalcons Note:

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.

Updating to the latest Road Runner code

This follows the steps here and assumes all commands are run using the git CLI from the root directory of your clone:

Add Road Runner as an upstream:

git remote add upstream https://github.com/acmerobotics/road-runner-quickstart

Update the master & competition branches with the lastest code

git checkout master
git fetch upstream
git merge upstream/master
git push origin master
git checkout competition
git merge master

Road Runner Quickstart

Check out the docs.

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%