Creating Repositories
Making a new Repository
If you donât already have a repository for your project folder, itâs fairly straightforward to make one.
First, locate your playtest folder in your hard drive. Iâve named mine ârepo practiceâ.

Next, go to GitHub Desktop and select âAdd an Existing Repository from your local drive⊠â

Select your repository.
Youâll get the following alert:

Click âcreate a repositoryâ.
Youâll get the following window. (Your filepath will be grayed out). Fill it out. You donât need to initialize a README, select a license, or add a Git ignore.

Then click âCreate repositoryâ! After a while of loading, youâll get the following window.

Now all you need to do is publish this repository to GitHub, which enables you to share it with others and back it up. To do that, simply click the button at the top!
Cloning a Repository
If instead of making your own repository, youâre being added to someone elseâs repository, youâre going to need to clone a repository from the internet.
If youâve already been added to the repository (see the Collaboration section for how to do that) adding your new repository should be a breeze.
On the GitHub Desktop main page, click âClone a repository from the InternetâŠâ

The following window will pop up.

Select the repository that you want to clone from the list (if your GitHub account is new, the list shouldnât be that long haha), then set your local path to wherever you want the folder to be and click âClone.â

If, for some reason, the repository is not visible in the selection window, open it in your browser and copy the link. The repository page will look something like this:

Copy the link from the search bar.
In the repository selection window, click the âURLâ tab. Then, paste in the repository link and click âCloneâ.

(Note: Putting the parallels repo link in your GitHub and trying to clone it wonât work. Even by URL, GitHub checks to make sure that the repository youâre trying to clone is one you have access to. You still need to have it shared with you or accessible to you if youâre trying to clone it by URL.)
Once you click âCloneâ, itâll redirect you to the following window.

(I didnât clone the parallels repository because I already have it downloaded to my computer.)
Ensure that you have a stable internet connection, because what this is essentially doing is downloading the entire project from online, where GitHub hosts it.
Wait for the entire repository to download. One itâs done, itâll take you to the following window:

And thatâs it! This is the main window in GitHub Desktop, and you can access your repository, commit, push, pull, and more from here.
But what do you do now? How do you use GitHub?
Last updated