Reputation: 3512
I always used "Share Project" to integrate Eclipse project with GitHub. However, I was always curious about "Apply Patch".
What does "Apply Patch" do in Eclipse?
I assume "Create Patch" is also related to "Apply Patch"?
Upvotes: 2
Views: 3401
Reputation: 496
You will find this in the official Eclipse Documentation
Patches allow developers to share work without storing it in a repository. This is helpful when a developer wants to contribute to a project that is shared through a repository but does not have write access to the repository. In this situation, the developer can create a patch and either e-mail it to a developer who does have write access or attach it to a bug in the bug reporting system used by the project, depending on the process defined by the project. A developer that does have write access can then apply the patch to the project and commit the changes.
Also see What is a patch in git version control?
Upvotes: 5