This is a repository for all of the Java files that carry over year-to-year for FRC Team 5587, Titan Robotics. All of these files are free for use for another team or personal projects so long as use complies with the license in this repository.
To generate documentation, simply use the javadoc
command on your desired file:
$ javadoc -d ./docs/ <path_to_file>
Afterwards, open the index.html
file found in the docs/
folder however you wish.
In the main repository:
-
Run
git init
in the vscode terminal -
Create the directory path where you want the submodule to be located. This can be done either manually or with
$ mkdir -p <directory_location>
(eg: mkdir -p src/main/java/org/frc5587/)
- Add the submodule to the repository in the desired location:
$ git submodule add https://github.com/frc5587/TitanLib.git <directory_location/new_submodule_folder>
(eg: git submodule add https://github.com/frc5587/TitanLib.git src/main/java/org/frc5587/lib)
Note: the branch of the submodule repo can be switched through the git tab on the vscode sidebar.