Git process and commands to know to contribute to an open-source project
bhuvana-guna
Posted on October 3, 2019
With Hacktoberfest happening this month, everyone is so pumped up to contribute to opensource. The aim of this blog is to give you the detailed steps to follow and commands to use when you contribute to an open-source project.
When you find an open-source GitHub project to which you want to add a feature or fix an issue, you would find that you would have to make a pull request(PR) to them to review and accept your changes.
This is the basic workflow to create a pull request.
Fork -> Clone -> Create branch -> Add -> Commit -> Push -> Create Pull Request
We will see it in detail.
- Fork the Git repository - This is to create a copy of the original repository in your account.
-
Once it is done, you will be able to see that repository in your account. Now click Clone/Download and copy the URL.
Make sure you are cloning the repository that is in your account by checking the URL. It should have your GitHub username
-
Open your terminal and navigate to the parent folder for your project and execute the below command with the copied URL.
git clone <clone-url>
This will create the project folder with all the content.
-
Navigate into the project folder.
cd your-project
-
Create a feature branch for the changes you are going to make. Make sure the branch name implies the changes you are going to make/feature you are going to add. eg: git checkout -b fixing-border-issue (or) git checkout -b new-product-page-ui
git checkout -b branch-name
-
After making the changes, add them to the branch.
git add file-name #To add all the changed files git add .
-
Commit the changes. Give proper comments explaining the changes made.
git commit -m "your comments"
-
Push the changes to the branch.
git push origin branch-name
Once you pushed, go to your GitHub repository page. You should be able to see a yellow bar with Compare and Pull request button. Click that and add comments.
Check and add more comments. When you are sure, Click Create pull request button.
You have made a pull request. Now you have to wait till a reviewer merges your PR. You will see a notification once your PR is accepted and merged.
Happy hacking!
Posted on October 3, 2019
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.
Related
October 3, 2019