-
If you don't already have a github account, make an account at https://github.com/.
-
Fork this repository by clicking "Fork" on the top right corner
-
Go to your repositories and find the one that you just forked
-
Find the green button that says "Clone or Download", click it, copy and paste the link
-
Go to your terminal, and go inside a directory that you want to put the project inside. If you're not sure what this means, here are a set of commands that you might find helpful (ignore the angle brackets, they are there to clarify that you're suppose to replace it). You can also skip all this and go directly to step 5. Let's assume our current location is "Desktop"
- "mkdir " makes a folder with the , so for example, "mkdir Project" will create a new folder named Project in your current directory, which is "Desktop"
- "cd" changes your directory, so for example, "cd Project" will change your current location to the Project folder
- "cd .." allows you to change from your current location to your parent folder, so for example, if you're in the Project folder, "cd .." will change your location back to "Desktop"
- Type "git clone " into your terminal without the quotes and angular brackets. is the link you copy pasted from Step 3.
Viola, you should have everything you need and you're done.
-
Open your terminal
-
"cd" into the folder where your forked repostiory is (If you're already in it, you don't need to do anything)
-
If you want to add files one by one, you can do "git add " If you want to submit everything, you can do "git add --all"
-
Commit your changes by typing "git commit -m ", where is just a short description of what you're adding. You can't leave this blank.
-
Finally push all your changes into your repository by typing "git push".
Viola, your repository now has all your changes.