This repository contains exercises and challenges for Codi students
You will be working on set of different exercises and challenges . Follow these steps to begin working.
First, you need to create your own copy of these exercises. We call this a "fork". Follow these steps to create your fork.
Next, you need to download your fork so that you have the files on your computer. Follow these steps to clone your fork. Open your Terminal and navigate to your directory for your course work.
cd <your-course-directory>
Run the following command in your terminal to clone this repository to your computer. Where it says <url>
, you should paste the URL of your fork. Hint: It's copied to your clipboard, so you can paste it in.
git clone <url>
For example, if your fork's URL is [email protected]:***/Submissions.git
, the command would be:
git clone [email protected]:***/Submissions.git
Next, navigate to the repository's directory and open your code editor.
cd Submissions
code .
When you're done, you should see your code editor with the files open on the left, like the following screenshot.
The Codi Tech Submission repo, is an active changes every day. To keep working on the latest Submission folders you need to do the followings:
git remote add upstream [email protected]:coditech/Submissions.git
git pull upstream master