To put your project up on your GitHub Enterprise instance, you'll need to create a repository for it to live in.

You can store a variety of projects in GitHub Enterprise repositories, including open source projects. With open source projects, you can share code to make better, more reliable software.

Note: You can create public repositories for an open source project. When creating your public repository, make sure to include a license file that determines how you want your project to be shared with others. For more information on open source, specifically how to create and grow an open source project, we've created Open Source Guides that will help you foster a healthy open source community by recommending best practices for creating and maintaining repositories for your open source project. You can also take a free GitHub Learning Lab course on maintaining open source communities.

  1. New repository menuIn the upper-right corner of any page, click , and then click New repository.

  2. Field for entering a repository nameType a short, memorable name for your repository. For example, "hello-world".

  3. Field for entering a repository descriptionOptionally, add a description of your repository. For example, "My first repository on GitHub Enterprise."
  4. Choose between creating a public or private repository.
    • Public repositories are a great choice for getting started. They're visible to any user on your GitHub Enterprise instance, so you can benefit from a collaborative community.
    • Radio buttons to select private or public status Private repositories require a little more setup. They're only available to you, the repository owner, as well as any collaborators you choose to share with.
  5. Checkbox to create a README when the repository is createdSelect Initialize this repository with a README.
  6. Click Create repository.

Congratulations! You've successfully created your first repository, and initialized it with a README file.

Commit your first change

A commit is like a snapshot of all the files in your project at a particular point in time.

When you created your new repository, you initialized it with a README file. README files are a great place to describe your project in more detail, or add some documentation such as how to install or use your project. The contents of your README file are automatically shown on the front page of your repository.

Let's commit a change to the README file.

  1. Readme file in file listIn your repository's list of files, click README.md.
  2. Above the file's content, click .
  3. New content in fileOn the Edit file tab, type some information about yourself.
  4. File preview buttonAbove the new content, click Preview changes.

  5. File preview viewReview the changes you made to the file. You'll see the new content in green.

  6. Commit message for your changeAt the bottom of the page, type a short, meaningful commit message that describes the change you made to the file.

  7. Commit branch optionsBelow the commit message fields, decide whether to add your commit to the current branch or to a new branch. If your current branch is master, you should choose to create a new branch for your commit and then create a pull request.

  8. Propose file change buttonClick Propose file change.

Celebrate

Congratulations! You have now created a repository, including a README file, and created your first commit on your GitHub Enterprise instance. What do you want to do next?