Downloading GitHub Projects
This guide will explain to you how to download (clone) GitHub Projects in a editable/collaborative way.
First time GitHub Setup
- Download and Install GitHub Desktop
- Login to GitHub Desktop
Download
- Navigate to the project you want to download on the SuperNURDs GitHub
- Click green
Code
button - Click open with GitHub Desktop
- Click clone
- Find the download project on your local machine and open files or folders
Committing and Pushing to a Repo
- Once you've made edits to your project locally, you can navigate to GitHub Desktop to view your changed files
- When you're happy with your set of changes, you can commit them. A commit in Git is essentially creating a snapshot of your changes. To do this, you write a commit message and click the
Commit
button Note: Committing changes does not upload them. They only live locally on your computer until you push them - Once you've made your commits and are ready to upload your changes, you can click the
Push origin
button. From there, you and others will be able to see your changes in the GitHub website in browser. Congrats! You've just pushed your changes!