This repo contains the code for the Westhill High School Robotics robot.
Run:
git clone https://github.com/dangreco/whs-robot.git
Or, using a GUI version of Git, enter the project's URL and clone.
If you are a member of the Westhill High School FTC team, please contact Daniel Greco in order to have your email added.
Otherwise, please open a pull request or issue on this project's page.
To contribute to this project, please follow the above instructions on cloning the project locally. Once you have worked on a specific area on the project, commit your changes.
Commiting is like "saving" your changes before pushing them. The format of a commit message explains what you have done, and is in the present tense (see commits by Daniel Greco for examples). To commit a change, enter:
git commit -m "YOUR MESSAGE IN QUOTES"
... or in Android Studio, go to VCS > Commit.
Once you are ready to push, ensure that your local repo is up to date by doing the following:
git fetch
git status
Once merge conflicts are resolved, enter the following:
git push origin master
Simply enter the following:
git pull origin master