pull requests
Pull Request Workflow with Merge
Workflow Steps:
-
Create a Feature Branch: Start from the latest
main
branch, create a new branch for your feature or bug fix.git checkout main git pull origin main git checkout -b feature-branch
-
Make Changes: Implement your feature or fix and commit your changes to this branch.
-
Push Feature Branch: Push your branch to the remote repository.
git push origin feature-branch
-
Create Pull Request: On GitHub, create a new pull request from your feature branch to the
main
branch. -
Review and Discuss: Team members review the changes, discuss, and possibly request modifications.
-
Merge Pull Request: Once approved, merge the pull request into
main
using GitHub’s merge option. This creates a merge commit.
Best Use Case for Merge:
- Collaborative Projects: When maintaining a comprehensive history of changes and contributions is more important than having a linear commit history. The merge workflow preserves the context of changes, including how features were integrated over time.
Pull Request Workflow with Rebase
Workflow Steps:
-
Create a Feature Branch: Just like with merging, you start by creating a new branch off of
main
. -
Make Changes: Work on your feature or bug fix and commit these changes.
-
Fetch Latest Changes: Before integrating your changes, fetch the latest updates from
main
.git fetch origin
-
Rebase onto Main: Rebase your feature branch onto the latest
main
to create a linear history.git rebase origin/main
Resolve any conflicts that arise during the rebase.
-
Force Push (If Necessary): After a successful rebase, you may need to force push your branch if you’ve already pushed it before rebasing.
git push origin feature-branch --force
-
Create Pull Request: Create a pull request for your rebased feature branch into
main
. -
Review and Discuss: The review process is the same; team members may review and request changes.
-
Merge Pull Request: Once the pull request is approved, merge it into
main
. Given the rebase, this merge is often a fast-forward merge, meaning no merge commit is created.
Best Use Case for Rebase:
- Individual Contributions or Feature-Specific Branches: Ideal when working on individual contributions or when it’s crucial to maintain a clean, linear history. Rebasing is best used in scenarios where a clear project narrative is preferred, and the branch is not shared with others, to avoid complications from rewriting history.