Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 691 Bytes

README.md

File metadata and controls

26 lines (16 loc) · 691 Bytes

ARC Quickstart

A starter robot project for all of Raiders of the ARC's FTC teams, with useful libs included.

Install Instructions (TODO: Make more beginner-friendly)

  1. Install Git and Android Studio

  2. Fork this repository, and clone the fork into a directory

  3. Add the parent AHS-Robotics-Club repo as an upstream

git remote add upstream https://github.com/AHS-Robotics-Club/arc-quickstart.git

Maintenance Instructions

  • ALWAYS create a branch before making changes
    • Give the branch a name similar to the action you are doing

How to pull changes from upstream

git fetch upstream # Gets changes from upstream
git checkout main
git merge upstream/main