Skip to content
This repository has been archived by the owner on Jan 11, 2025. It is now read-only.

Latest commit

 

History

History
executable file
·
47 lines (40 loc) · 1.79 KB

README.md

File metadata and controls

executable file
·
47 lines (40 loc) · 1.79 KB

Robot-Code

All robot code from 2017 onward

Contributors

The contributors to the 2017-present code consists of: Brayton, Nathan, Lance, Travis, Kira, Jadon, Demetri

Before You Do Anything

Before you checkout code, you should first extract the eclipse workspace from the workspace.tar.gz archive into the current directory; if you've done it right, you should see

  • .git
  • .metadata
  • Project
  • RemoteSystemsTempFiles
  • README.md
  • workspace.tar.gz
  • workspace.zip

Once that's done, you're ready to checkout one of the branches with code (for example, 2018-Master).

Commit Format

When making a commit, you must follow the following format:

  • All general comments must be begin with a three equal signs (===)
  • Additions to code (ie functions, comments, variables, etc.) must begin with three plus signs (+++)
  • If you delete a something from the code (ie functions, comments, variables, etc.) must begin with three minus signs (---)
  • To add a comment to one of the above declarations, start the comment on the following line and begin it with three greater than signs (>>>)

#### Example Commit:

Repo Structure:

Our repository is made up of a branching system.


Every branch with the word "Master" in the title is made up of code that is guaranteed to work 100% of the time.

Code committed to Master branches will be tagged according to this guide.

All unstable or development code is located in branches off the "Master" branches.

>see image below

Detailed explanation coming soon.