3 easy steps to submitting a GitHub pull request

No readers like this yet.
GitHub logo with navy background

From GitHub

Making a change to open source code can be a rush.

Recently I was working on software to provide a console command-line interface for users to interact with the NodeJS API client for HPE's Operations Orchestration product. I realized I needed to use a library someone else wrote to parse all the arguments and display a nice command usage output. Something like this:

Command usage output screenshot

I began searching for a library to use in npm, the largest repository of open source NodeJS packages. Among npm's most popular libraries is command-line-args. I gave it a try and found it had almost everything I needed, including tests and code coverage. It's also well-maintained with frequent releases. Then, I hit a snag. I wanted to add some description to my command arguments, but couldn't find anything in the documentation about it. After inspecting the source code a bit further, I found references to a description property that could be configured.

Great, right? I found the solution to my problem, and I'm done.

Well, not exactly. What if someone else has the same problem in the future? They might not be able to find the solution and rule out this library because it doesn't seem to support a description configuration. Open source software works best when we pay things forward, so when you find something that can be improved, take the next step to improve it yourself.

3 easy steps to submit a pull request on GitHub

1. Create your own copy of the code repository by forking the original.

While logged in to GitHub and browsing the repository page for the project, locate and click the Fork button at the top right of the page. Your new personal repository will be created.

At this point, you can make any modifications you wish and suggest them to the parent repository you forked from. You can either clone the new forked repository on your own computer or edit files through the GitHub UI.

If you don't have a preferred Git UI tool but you do have Git installed, the following command will clone the repository to a local directory:

git clone 

2. Make changes to the required file on your new forked repository.

If you want to make simple changes to things like README files, you can easily do this editing from GitHub's web site. To do so, locate the file you wish to edit and click on it to view it. Then, locate the top right pen icon to edit the file right in the browser. Make any changes you wish, add a commit message, and click Commit.

If you need to make modifications to files on a local cloned repository then after you're done making changes, don't forget to commit the files:

git add .
git commit -m "a commit message"

and then push the changes to your remote repository on GitHub:

git push origin

3. Create a pull request to merge and incorporate your changes into the original repository.

Creating a pull request allows upstream repositories (the original project you forked from) to accept your suggestions for improvements and fixes.

To create a new pull request, simply locate the green button on your repository project page called New pull request and you'll be presented with the list of changes you've made on your personal forked repository. On the top of the pull request, the base project is the upstream repository which you forked from. The page will show full list of changes to each file (a diff) which you can review. To proceed, click on the green Create pull request button and confirm the title and description. Then just submit it and you're done!

Your contribution will be sent to the project maintainer.

GitHub comment screenshot

I should note that the maintainer may not choose to incorporate your contribution for any number of reasons, including code style standards and commit message guidelines. It is also possible that the project isn't actively maintained anymore and you will not get attention from the maintainers. For this reason, it's always best to consult a file commonly found in projects called CONTRIBUTING.md, which provides guidelines for how to contribute code back to the project. Of course, you'll also want to make sure the project is still maintained and ready to accept contributions.

What has your experience with submitting changes to open source repositories been? Do you have any advice to give? Let us know in the comments.

User profile image.
Liran Tal is leading the R&D engineering team for HP Software’s enterprise content market place, distribution, and collaboration platform, where he strives for improved agile software development by adopting scrum processes, creating multi-national feature teams, and managing the group’s agile workflow through HP’s Agile Manager software tool.

2 Comments

Just a side note.

Do learn how to use Git with only the command-line. It's gonna help you in the long run.

Definitely! :)

Creative Commons LicenseThis work is licensed under a Creative Commons Attribution-Share Alike 4.0 International License.