Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/team3256/frc_offseason_2022
Training code for the 2022 offseason
https://github.com/team3256/frc_offseason_2022
Last synced: about 2 months ago
JSON representation
Training code for the 2022 offseason
- Host: GitHub
- URL: https://github.com/team3256/frc_offseason_2022
- Owner: Team3256
- License: other
- Created: 2022-11-02T01:53:23.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-16T23:17:09.000Z (about 1 year ago)
- Last Synced: 2024-03-27T12:57:51.497Z (9 months ago)
- Language: Java
- Size: 147 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# FRC_Offseason_2022
[![CI](https://github.com/Team3256/FRC_Offseason_2022/actions/workflows/main.yml/badge.svg?branch=main)](https://github.com/Team3256/FRC_Offseason_2022/actions/workflows/main.yml)# Quickstart
Clone the repo:`git clone https://github.com/Team3256/FRC_Offseason_2022.git`
# Starting an assignment
- You can find the assingments [here](https://github.com/Team3256/FRC_Offseason_2022/tree/main/assignments)
- Create a new branch with your name
- `git checkout -b first-last-swXXa # (replace first and last with your first and last name, XX with the assignment number)`
- Code the assingment
- Pushing code when finished
- `git add . # stage changes`
- `git commit -m "Good commit message" # commit code`
- First push
- `git push --set-upstream origin first-last # push code to your branch`
- Needed to create the branch on github
- Other pushes
- `git push`
- Since branch is already on github, you can just git push# Gradle Tasks
- `Build`
- Compiles java code
- `Test`
- Runs all test cases (do this to see if the assignment was completed correctly)
- `simulateJava`
- Starts the simulation GUI