Skip to content
This repository has been archived by the owner on Oct 29, 2019. It is now read-only.

Constants, header files, and declarations shared between repositories.

Notifications You must be signed in to change notification settings

RITFIRSTRobotics/2018-core-code

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

51 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

2018-core-code

Constants, header files, and declarations shared between repositories.

Usage

When cloning a repository that uses the core code, you must first:

git submodule init
git submodule update
cd core

The repository will then have the version of core that the submodule points to (may not be the most recent). If you want to update the version of core to the current revision, run:

cd core
git checkout master
git pull origin master
cd ..
git add core
git commit -m "updated core to most recent version"
git push