β¨ CSC Assignments for March Holidays 2018.
- Create a GitHub account
- Get added to the
csc2018
organisation - Press the Fork button on the top right of the GitHub page (here if you're reading this elsewhere) to fork this repository
- Now you should see your own copy of the
march-hols
repository, under your account name.
- Get GitHub desktop here
- Follow the installation instructions
- Clone your forked repository by going to
File > Clone Repository
in GitHub Desktop - Select the folder location of your choice to save the repo into
- Open the folder on your computer with your code editor and edit the assignment files (in the
assignments
folder) - You can read the instructions for each assignment on the GitHub repository itself (e.g. here)
- Tick all changed files (in the Changes column on the left) ready for upload in GitHub Desktop (if you don't see your files and its changes, try saving and waiting)
- Add a helpful commit message and optional description
- Press "Commit to master" to commit your changes
- Press Publish/Push origin on the top to upload your code
- Press Pull/Fetch origin at the top of GitHub Desktop to get the updated version of this repo
- Resolve any errors using a code editor
# Clone the repository
$ git clone https://github.com/YourUsername/march-hols
# Push your changes
$ git add .
$ git commit -m "Initial commit"
$ git push -u origin master
# Pull latest updates (new assignments)
$ git pull