Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 1019 Bytes

README.md

File metadata and controls

34 lines (27 loc) · 1019 Bytes

Overseer 2021-22

Viewing past files used in Overseer

To view some of the past files used in Overseer, click on this link: https://github.com/Bruin-Spacecraft-Group/Overseer/tree/1de8b506c905792a38530c1407036a0f964ff9db

Installation

To install the current version, use the following command in Terminal (for Mac OS users):

git clone https://github.com/Bruin-Spacecraft-Group/Overseer.git

Individual development on the Overseer repository

After cloning the Overseer repository onto your local machine, use the following lines in Terminal (for Mac OS users) to create your own branch for individual development:

cd Overseer
git checkout -b <insert development-Firstname_Lastname>

For example:

cd Overseer
git checkout -b development-John_Smith

To push your development branch to the remote repository, use the following line:

git push --set-upstream origin <insert development-Firstname_Lastname>

For example:

git push --set-upstream origin development-John_Smith