Jump to content

Merge Workflow: Difference between revisions

From postmarketOS Wiki
New wiki page about the merge workflow
 
update to gitlab.postmarketos.org
 
(6 intermediate revisions by 3 users not shown)
Line 1: Line 1:
We are using GitHub's merge button to squash and merge pull requests (PRs). This is a fast workflow for the people responsible for merging PRs, but it may
This page used to describe the merge workflow on GitHub and reasoning for always using "squash and merge". Nowadays we are on GitLab and have a tool to assist us with the merge workflow. From the user's perspective, you only need to know that commits are squashed into one commit if they don't have a clean history.
alter metadata associated with your commit. After discussing this in {{github|1374}}, the solution we went with is letting the user who makes the PR decide if they are fine with the default, or if they want their PR to be merged on the command line.


== Merge on GitHub ==
For people responsible of merging patches, see [https://gitlab.postmarketos.org/postmarketOS/mrhlpr mrhlpr] for our merge workflow.
[https://help.github.com/articles/merging-a-pull-request/#merging-a-pull-request-on-github Clicking the merge button]. We always use "squash and merge" to have the entire PR as it was tested and reviewed as one commit in the git log (instead of many commits). If necessary, rebases are done on the command line and pushed to the PR branch to
make continuous integration run on the rebased version.


Metadata:
Related: [[Git workflow]]
* GitHub will replace your e-mail with <code>username@users.noreply.github.com</code> when you enable [https://help.github.com/articles/setting-your-commit-email-address-on-github/ "Keep my email address private"]
* It may also change the timezone information of the squashed commit ([https://github.com/postmarketOS/pmbootstrap/issues/1374#issue-309610684 #1374 (comment)] indicates that)
 
Advantages:
* PR shows up as "merged" instead of "closed" (as if it was abandoned)
* Less work for people responsible for merging
 
== Merge on command line ==
We would use the following lines to squash and merge PRs:
<syntaxhighlight lang="shell-session">
$ git fetch origin pull/1/head:pr1
$ git checkout pr1
$ git rebase
if there were any conflicts that needed to be resolved, it should be pushed to
the PR branch at this point. When continous integration ran through:
$ git checkout master
$ git merge pr1
</syntaxhighlight>
 
Metadata:
* Does not get modified by GitHub
 
== Always squash the commits? ==
In order to maintain a clean history of commits (without commits such as "fix spelling error", "restart tests" that may be part of a PR), we squash the whole PR into one commit. However, an exception can be made (example: {{github|1421}}) in case all of the following apply:
* each commit has a good message
* there are no clutter commits that are minor fixes to the previous commits
* commits were reviewed independently
* two commits did not change the same code (e.g. each commit changes one package in aports)
 
With that being said, it would make reviewing much easier if individual pull requests were created instead.

Latest revision as of 05:01, 3 November 2024

This page used to describe the merge workflow on GitHub and reasoning for always using "squash and merge". Nowadays we are on GitLab and have a tool to assist us with the merge workflow. From the user's perspective, you only need to know that commits are squashed into one commit if they don't have a clean history.

For people responsible of merging patches, see mrhlpr for our merge workflow.

Related: Git workflow