Movatterモバイル変換


[0]ホーム

URL:


Skip to main content
GitHub Docs

Hello World

Follow this Hello World exercise to learn GitHub's pull request workflow.

Introduction

This tutorial teaches you GitHub essentials like repositories, branches, commits, and pull requests. You'll create your own Hello World repository and learn GitHub's pull request workflow, a popular way to create and review code.

In this quickstart guide, you will:

  • Create and use a repository.
  • Start and manage a new branch.
  • Make changes to a file and push them to GitHub as commits.
  • Open and merge a pull request.

Prerequisites

  • You must have a GitHub account. For more information, seeCreating an account on GitHub.

  • You don't need to know how to code, use the command line, or install Git (the version control software that GitHub is built on).

Step 1: Create a repository

The first thing we'll do is create a repository. You can think of a repository as a folder that contains related items, such as files, images, videos, or even other folders. A repository usually groups together items that belong to the same "project" or thing you're working on.

Often, repositories include a README file, a file with information about your project. README files are written in Markdown, which is an easy-to-read, easy-to-write language for formatting plain text. We'll learn more about Markdown in the next tutorial,Setting up your profile.

GitHub lets you add a README file at the same time you create your new repository. GitHub also offers other common options such as a license file, but you do not have to select any of them now.

Yourhello-world repository can be a place where you store ideas, resources, or even share and discuss things with others.

  1. In the upper-right corner of any page, select, then clickNew repository.

    Screenshot of a GitHub dropdown menu showing options to create new items. The menu item "New repository" is outlined in dark orange.

  2. In the "Repository name" box, typehello-world.

  3. In the "Description" box, type a short description. For example, type "This repository is for practicing the GitHub Flow."

  4. Select whether your repository will bePublic orPrivate.

  5. SelectAdd a README file.

  6. ClickCreate repository.

Step 2: Create a branch

Branching lets you have different versions of a repository at one time.

By default, your repository has one branch namedmain that is considered to be the definitive branch. You can create additional branches off ofmain in your repository.

Branching is helpful when you want to add new features to a project without changing the main source of code. The work done on different branches will not show up on the main branch until you merge it, which we will cover later in this guide. You can use branches to experiment and make edits before committing them tomain.

When you create a branch off themain branch, you're making a copy, or snapshot, ofmain as it was at that point in time. If someone else made changes to themain branch while you were working on your branch, you could pull in those updates.

This diagram shows:

  • Themain branch
  • A new branch calledfeature
  • The journey thatfeature takes through stages for "Commit changes," "Submit pull request," and "Discuss proposed changes" before it's merged intomain

Diagram of the two branches. The "feature" branch diverges from the "main" branch and is then merged back into main.

Creating a branch

  1. Click theCode tab of yourhello-world repository.

  2. Above the file list, click the dropdown menu that saysmain.

    Screenshot of the repository page. A dropdown menu, labeled with a branch icon and "main", is highlighted with an orange outline.

  3. Type a branch name,readme-edits, into the text box.

  4. ClickCreate branch: readme-edits from main.

    Screenshot of the branch dropdown for a repository. "Create branch: readme-edits from 'main'" is outlined in dark orange.

Now you have two branches,main andreadme-edits. Right now, they look exactly the same. Next you'll add changes to the newreadme-edits branch.

Step 3: Make and commit changes

When you created a new branch in the previous step, GitHub brought you to the code page for your newreadme-edits branch, which is a copy ofmain.

You can make and save changes to the files in your repository. On GitHub, saved changes are called commits. Each commit has an associated commit message, which is a description explaining why a particular change was made. Commit messages capture the history of your changes so that other contributors can understand what you’ve done and why.

  1. Under thereadme-edits branch you created, click theREADME.md file.
  2. To edit the file, click.
  3. In the editor, write a bit about yourself.
  4. ClickCommit changes.
  5. In the "Commit changes" box, write a commit message that describes your changes.
  6. ClickCommit changes.

These changes will be made only to the README file on yourreadme-edits branch, so now this branch contains content that's different frommain.

Step 4: Open a pull request

Now that you have changes in a branch off ofmain, you can open a pull request.

Pull requests are the heart of collaboration on GitHub. When you open a pull request, you're proposing your changes and requesting that someone review and pull in your contribution and merge them into their branch. Pull requests show diffs, or differences, of the content from both branches. The changes, additions, and subtractions are shown in different colors.

As soon as you make a commit, you can open a pull request and start a discussion, even before the code is finished.

In this step, you'll open a pull request in your own repository and then merge it yourself. It's a great way to practice the GitHub flow before working on larger projects.

  1. Click thePull requests tab of yourhello-world repository.

  2. ClickNew pull request.

  3. In theExample Comparisons box, select the branch you made,readme-edits, to compare withmain (the original).

  4. Look over your changes in the diffs on the Compare page, make sure they're what you want to submit.

    Screenshot of a diff for the README.md file. 3 red lines list the text that's being removed, and 3 green lines list the text being added.

  5. ClickCreate pull request.

  6. Give your pull request a title and write a brief description of your changes. You can include emojis and drag and drop images and gifs.

  7. ClickCreate pull request.

Reviewing a pull request

When you start collaborating with others, this is the time you'd ask for their review. This allows your collaborators to comment on, or propose changes to, your pull request before you merge the changes into themain branch.

We won't cover reviewing pull requests in this tutorial, but if you're interested in learning more, seeAbout pull request reviews. Alternatively, try theGitHub Skills "Reviewing pull requests" course.

Step 5: Merge your pull request

In this final step, you will merge yourreadme-edits branch into themain branch. After you merge your pull request, the changes on yourreadme-edits branch will be incorporated intomain.

Sometimes, a pull request may introduce changes to code that conflict with the existing code onmain. If there are any conflicts, GitHub will alert you about the conflicting code and prevent merging until the conflicts are resolved. You can make a commit that resolves the conflicts or use comments in the pull request to discuss the conflicts with your team members.

In this walk-through, you should not have any conflicts, so you are ready to merge your branch into the main branch.

  1. At the bottom of the pull request, clickMerge pull request to merge the changes intomain.
  2. ClickConfirm merge. You will receive a message that the request was successfully merged and the request was closed.
  3. ClickDelete branch. Now that your pull request is merged and your changes are onmain, you can safely delete thereadme-edits branch. If you want to make more changes to your project, you can always create a new branch and repeat this process.
  4. Click back to theCode tab of yourhello-world repository to see your published changes onmain.

Conclusion

By completing this tutorial, you've learned to create a project and make a pull request on GitHub.

As part of that, we've learned how to:

  • Create a repository.
  • Start and manage a new branch.
  • Change a file and commit those changes to GitHub.
  • Open and merge a pull request.

Next steps

  • Take a look at your GitHub profile and you'll see your work reflected on your contribution graph.
  • If you want to practice the skills you've learned in this tutorial again, try theGitHub Skills "Introduction to GitHub" course.
  • In the next tutorial,Setting up your profile, you'll learn how to personalize your profile and you'll also learn some basic Markdown syntax for writing on GitHub.

Further reading


[8]ページ先頭

©2009-2026 Movatter.jp