Curriculum
Course: Git
Login
Text lesson

GitHub Send Pull Request

Push Changes to Our GitHub Fork

We’ve made numerous changes to our local Git repository.

Now, commit those changes and push them to our GitHub fork:

Example

[user@localhost] $

git push origin
Enumerating objects: 8, done.
Counting objects: 100% (8/8), done.
Delta compression using up to 16 threads
Compressing objects: 100% (5/5), done.
Writing objects: 100% (5/5), 393.96 KiB | 32.83 MiB/s, done.
Total 5 (delta 0), reused 0 (delta 0), pack-reused 0
To https://github.com/kaijim/code7school-test.github.io.git

   facaeae..ebb1a5c  master -> master

Go to GitHub, and you’ll see that the repository now has a new commit. From there, you can send a Pull Request to the original repository.

Click on that option and create a pull request.

Make sure to include an explanation for the administrators.

The pull request has been sent.

Approving Pull Requests

Now, any member with access to the original repository can view the pull request.

And they can review the proposed changes.

They can comment on the changes and merge the pull request.

Confirm:

And the changes have been merged into the master branch.

Now it’s your turn!