PR ? #117
-
Hey can anybody explain me that what it means if we raise PR after resolving an issue or raising a PR after contributing to the project. Both have the same meaning? |
Beta Was this translation helpful? Give feedback.
Replies: 6 comments 3 replies
-
Yes - you are contributing to the project based on the issue assigned to you |
Beta Was this translation helpful? Give feedback.
-
Raising a pull request (PR) after resolving an issue and raising a PR after contributing to the project both involve contributing code changes to the project's repository, but they represent slightly different scenarios:
Differences:
In summary, while both scenarios involve submitting pull requests with code changes, raising a PR after resolving an issue is more targeted towards specific problems documented in the issue tracker, whereas raising a PR after contributing to the project encompasses a broader range of contributions. |
Beta Was this translation helpful? Give feedback.
-
Hello @rajvaidyanath27 In Open Source, we use PR as an abbreviation for PULL REQUEST. I'd request you to kindly go through the sample video: https://www.youtube.com/watch?v=rgbCcBNZcdQ Hope it helps |
Beta Was this translation helpful? Give feedback.
-
Both scenarios entail proposing changes through a pull request, whether it's addressing specific issues or contributing to the project in various ways. Check the below points for a better understanding :
|
Beta Was this translation helpful? Give feedback.
-
Raising a pull request (PR) after resolving an issue and raising a PR after contributing to the project can have similar meanings, but they may involve slightly different contexts:
In both cases, the ultimate goal of raising a PR is to contribute your changes back to the project in a way that allows them to be reviewed, discussed, and eventually merged into the main codebase. Whether you're addressing a specific issue or making more general contributions, the PR serves as a means of communication and collaboration with the project maintainers and other contributors. |
Beta Was this translation helpful? Give feedback.
-
Hey there! So, when you raise a PR (pull request) after resolving an issue or contributing to a project, it's kinda of like saying, "Hey, I've made some changes or fixes, take a look! " It's a way to show the project maintainers what you've done and ask for your changes to be reviewed and eventually merged into the main codebase. Whether you're fixing a bug or adding a new feature, raising a PR is your way of sharing your work with the project team. So yeah, in a nutshell, both scenarios pretty much have the same idea behind them. Hope that clears things up! 🚀 And on this page when they say contribute to the project they simply mean you can contribute to the project (make changes to the project I. e. Bug, new features, documentation updates etc. ) through a step-by-step process from first cloning/forking the desired repository into your account and lastly making pull requests also called PR. |
Beta Was this translation helpful? Give feedback.
Hey there! So, when you raise a PR (pull request) after resolving an issue or contributing to a project, it's kinda of like saying, "Hey, I've made some changes or fixes, take a look! " It's a way to show the project maintainers what you've done and ask for your changes to be reviewed and eventually merged into the main codebase. Whether you're fixing a bug or adding a new feature, raising a PR is your way of sharing your work with the project team. So yeah, in a nutshell, both scenarios pretty much have the same idea behind them. Hope that clears things up! 🚀
If you are wondering how to make PR then please refer:-
(https://github.com/GSSoC24/Contributor)
And on this page when they say co…