In setting up for the program, you will be instructed to fork this repository and work on your own repository. Instructions for setting this up while also tracking the main branch follows.
-
Fork. This is the easiest part. Log into github and navigate to the main
collabraCode();
repository. Now click the Fork button. -
After you have forked your repository you need to clone it.
git clone [Your Fork's URL]
-
Now you have a local copy, tracking your fork of the mainline repository. This is great! Except... you need to also track the original repository for updates and changes. The easiest way to do this is add a second remote repository to your local copy.
git remote add cc git@github.com:sdickert/collabracode.git git fetch cc git checkout -b mainline cc/master