Robot code for the 2024 FRC season, made by team 9702.
When creating branches for this project, please follow the following naming convention:
- Feature branches:
feature/branch-name - Bug fix branches:
fix/branch-name - Documentation branches:
docs/branch-name
Make sure to use lowercase letters and separate words with hyphens.
When making commits, please follow the following guidelines:
- Start the commit message with either
feat:,fix:, ordocs:,to indicate the type of change made - Use the present tense ("Add feature" not "Added feature")
- Use the imperative mood ("Move cursor to..." not "Moves cursor to...")
- Limit the first line to 72`` characters or less
Example commit message:
feat: Add arcade drive
How to create a pull request:
- Create a new branch off of
mainwith the naming convention mentioned above. - Make your changes and commit them.
- Push your branch to the repository.
- Go to the repository on GitHub and click "New pull request".
- Select your branch and
mainas the base branch. - Assign yourself as the assignee
- Link the pull request to any issues that it is related to by typing
#and the issue number in the description (i.e.,#123). - Fill out the pull request template and click "Create pull request".