Step by step contributing to Open Source Project
Step by Step contributing to Open Source Project :
1. FORK REPOSITORY -> Fork your desired project
2. CLONE REPOSITORY -> git clone your-forked-project
3. cd your-clone-poject
4. CREATE A BRANCH -> git checkout -b your-branch-name
5. MAKE NECESSARY CHANGES & COMMIT THOSE CHANGES
-> git add your-modified-file
-> git commit -m 'adding my name to file'
6. PUSH THOSE CHANGES TO GITHUB
-> git push origin your-branch-name
7. SUBMIT YOUR CHANGES FOR REVIEW
-> Click button "Compare & pull request"
-> Open a pull request, write your name and click button Create pull request.
1. FORK REPOSITORY -> Fork your desired project
2. CLONE REPOSITORY -> git clone your-forked-project
3. cd your-clone-poject
4. CREATE A BRANCH -> git checkout -b your-branch-name
5. MAKE NECESSARY CHANGES & COMMIT THOSE CHANGES
-> git add your-modified-file
-> git commit -m 'adding my name to file'
6. PUSH THOSE CHANGES TO GITHUB
-> git push origin your-branch-name
7. SUBMIT YOUR CHANGES FOR REVIEW
-> Click button "Compare & pull request"
-> Open a pull request, write your name and click button Create pull request.
Comments
Post a Comment