Theses are the steps that you will be doing for your projects here at Lambda school.
-
Create YOUR OWN version of Repo —> (Fork)

Click the Fork Button to fork the Repo
-
Your name should now be in front of the repo name before the slash '/' if forking is successful

- Add your TL (me) as a collaborator on your forked Repo.
- Settings → Collaborators → Add Collaborator (use my Github handle)



Here you can add your TL as a collaborator!
- Clone your Repo using githubs 'Clone or download' button


- Back inside your CLI, use the cd command to go to the directory where you are going to want to clone your forked Repo (i.e. The location where the repo should be saved on your computer)

Notice I am in the directory Documents/Git, this could be different for you depending on where you want your repo to be cloned to.
- Use the git clone <link-to-repo> command to clone the repo to the directory you are currently in.

- cd into the newly created repo using the cd <repo-name> command

- Use the git checkout -b 'firstname-lastname' command to create your own branch name for the repo (this is the branch that you will be doing your work on)