> For the complete documentation index, see [llms.txt](https://book.umlinfo2480.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://book.umlinfo2480.com/week-1-software-and-setup/git-github/creating-a-repo-on-github.md).

# Creating a Repo on Github

Goal: By the end of this document you’ll be able to create a repository on Github and clone it to your local machine.

[View Video](https://youtu.be/t_Eft1wd3X0)

Previously, we looked at creating a git repo on our local machine. We also:

* Created a text file
* Staged and committed that text file to our local repo
* Created a branch off of the master repo
* Made changes. staged and committed those changed into the branch.
* Merged the branch into the master branch to make a new “final product”.

Now, we’re going to create a new repository on [GitHub.com](http://GitHub.com) which is going to house the exercises we are going to do each week. Once it’s created, we’re going to make a copy of it on our local machine in a process called `CLONING`.

1. Log onto your [Github.com](http://Github.com) account
2. In the left menu of the Dashboard (the default page when you login) will be a list of your Top Repositories and a green button that says `New`. Click on it. ![](https://308790448-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Foo2KjQHLhGxhFP0S7B0G%2Fuploads%2FIz0MyP0Mkbxx7d4VikZo%2Fgit1.png?alt=media\&token=f4c91586-b3c1-4c75-9b1d-04ab9eeb166b)
3. In the window which appears,

* Give your repository a name ( `umlinfo2480` is given here as an example ).
* Give it a description if you choose
* Keep it public
* Check Add a README file
* You don’t need to add a license if you don’t want to. We can talk about these more in chat, if you want, or you can search for more info on it.&#x20;

<figure><img src="https://308790448-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Foo2KjQHLhGxhFP0S7B0G%2Fuploads%2FYsltZ2iQn97Tf1AMGUjh%2Fgit2.png?alt=media&amp;token=d8750afe-6296-401f-95da-421e8b896417" alt=""><figcaption></figcaption></figure>

Click on Create Repository and you’ll be brought to the home page of your new repo. Congratulations!
