GitWorkflow

Differences between revisions 38 and 42 (spanning 4 versions)
Revision 38 as of 2016-11-15 19:13:23
Size: 29228
Editor: nacc
Comment:
Revision 42 as of 2016-11-23 16:51:51
Size: 33853
Editor: nacc
Comment:
Deletions are marked like this. Additions are marked like this.
Line 50: Line 50:
  1. `usd merge tag ubuntu/devel`   1. `usd merge ubuntu/devel`
Line 58: Line 58:
  1. `usd merge reconstruct old/ubuntu`
   1. In the importer algorithm, explained later, each imported version is possibly a git merge. If you were to directly rebase 'old/ubuntu' onto 'debian/sid', the merges would be replayed, which will typically fail.
   1. Instead, this will replay the current ubuntu delta back onto 'old/debian', but dropping the merge commits as artifacts of the `usd import` algorithm.
1. The end result, which will be the checked-out if successful, is a sequence of `git-cherry-pick`s of published Ubuntu versions after the 'old/debian' version that are not merges (but are otherwise identical to the sequence of commits in 'old/ubuntu'.
   1. In this process, there might be some empty commits cherry-picked over. This is the result of, e.g., copy-forwards between series (Y -> Z) or pockets (proposed -> release). To maximize the information retained, these empty commits are retained in the reconstruct, but will be dropped in the deconstruct phase.
  1. This will replay the git-merged delta into a sequence of linear non-merge commits.
    1. In the importer algorithm, explained later, each imported version is possibly a git merge. If you were to directly rebase 'old/ubuntu' onto 'debian/sid', the merges would be replayed, which will typically fail.
    1. Instead, this will replay the current ubuntu delta back onto 'old/debian', but dropping the merge commits as artifacts of the
`usd import` algorithm.
    1. The end result, which will be the checked-out if successful, is a sequence of `git-cherry-pick`s of published Ubuntu versions after the 'old/debian' version that are not merges (but are otherwise identical to the sequence of commits in 'old/ubuntu'.
    1. In this process, there might be some empty commits cherry-picked over. This is the result of, e.g., copy-forwards between series (Y -> Z) or pockets (proposed -> release). To maximize the information retained, these empty commits are retained in the reconstruct, but will be dropped in the deconstruct phase.
Line 86: Line 86:
  1. `git tag deconstruct/<ubuntu version>`   1. `usd tag --format='deconstruct/%(version)s'`
Line 94: Line 94:
  1. `git tag logical/<ubuntu version>`   1. `usd tag --format='logical/%(version)s'`
Line 137: Line 137:
  1. not sure if eventually the tooling will do so, but whoever uploads after the review is done should tag and push an uploaded tag. That is used later on to provide the split history instead of the squashed import to the next user of this process. `git tag upload/<new ubuntu version>`   1. not sure if eventually the tooling will do so, but whoever uploads after the review is done should tag and push an uploaded tag. That is used later on to provide the split history instead of the squashed import to the next user of this process. `usd tag`
Line 178: Line 178:
== usd-import ==

{{{
usage: usd-import [-h] [-o LP_OWNER] [-l LP_USER] [--no-push] [--force-push]
                  [--no-clean] [-v] [-d DIRECTORY] [-P PARENTFILE]
== usd ==

{{{
usage: usd [-h] [-P PARENTFILE] [-L PULLFILE]
           build|build-source|clone|import|merge|tag ...

Ubuntu Server Dev git tool

positional arguments:
  build|build-source|clone|import|merge|tag
                        
                        build - Build a usd-cloned tree with
                        dpkg-buildpackage
                        build-source - Build a source package and changes
                        file
                        clone - Clone package to a directory
                        import - Update a launchpad git tree based upon
                        the state of the Ubuntu and Debian archives
                        merge - Given a usd-import'd tree, assist with an
                        Ubuntu merge
                        tag - Given a usd-import'd tree, tag a commit
                        respecting DEP14

optional arguments:
  -h, --help show this help message and exit
  -P PARENTFILE, --parentfile PARENTFILE
                        File specifying parent-child relationship
                        overrides as:
                        <pkgname> <child version> <publish parent version> <changelog parent version>
                        with one override per line.
                        default=/home/nacc/work/usd-importer/usd/parent_overrides.txt
  -L PULLFILE, --pullfile PULLFILE
                        File specifying source files to use instead of
                        Launchpad to work around source file shadowing:
                        <pkgname> <version> <URL of DSC file> <URLs of orig files>
                        with one package per line. '-' for the DSC file indicates to use the
                        one from Launchpad.
                        default=/home/nacc/work/usd-importer/usd/pull_overrides.txt
}}}

Available from [[https://code.launchpad.net/~usd-import-team/usd-importer/+git/usd-importer|Launchpad git repository]].

Top-level command to all the Ubuntu Server Dev git-manipulating tools.

=== usd import ===
{{{
usage: usd import [-h] [-v] [--retries RETRIES]
                  [--retry-backoffs RETRY_BACKOFFS] [--proto [git|http|https]]
                  [-o LP_OWNER] [-l LP_USER] [--dl-cache DL_CACHE] [--no-push]
                  [--no-clean] [-d DIRECTORY]
Line 193: Line 238:
  -v, --verbose Increase verbosity (default: False)
  --retries RETRIES Number of times to attempt to retry downloading from
                        Launchpad. (default: 3)
  --retry-backoffs RETRY_BACKOFFS
                        Comma-separated list of backoffs in seconds to use
                        between each retry attempt. Default is exponential
                        backoff.
  --proto [git|http|https]
                        Specify protocol to use for fetch. Default: git
Line 194: Line 248:
                        Which launchpad user's tree to update (default:
                        ubuntu-server-dev)
                        Which launchpad user's tree to update (default: usd-
                        import-team)
Line 197: Line 251:
                        Specify the Launchpad user to use (default: <current username>)                         Specify the Launchpad user to use (default: nacc)
  --dl-cache DL_CACHE Cache directory for downloads. Default is to put
                        downloads in <directory>/.git/usd-cache
Line 199: Line 255:
  --force-push Forcibly push all tags and branches from the import
                        (default: False)
Line 202: Line 256:
  -v, --verbose Increase verbosity (default: False)
Line 206: Line 259:
                        the local repository if needed. (default: None)
  -P PARENTFILE, --parentfile PARENTFILE
                        File specifying parent-child relationship overrides
                        as: <pkgname> <child version> <parent1 version>
                        <parent2 version> with one override per line.
                        (default: None)
                        the local repository if needed.
Line 238: Line 286:
=== Algorithmic discussion === ==== Algorithmic discussion ====
Line 262: Line 310:
=== Local usage ===

While the intention is to use the lpusip/lpusdp repositories as the remotes for merge requests, it is also possible to run the importer fully locally and not push to a remote.

`usd-import --no-push <srcpkgname> -d /path/to/repository/`

This will run the import algorithm locally, which can take some time, leaving the repository in `/path/to/repository`, but not pushing to any remotes. By the nature of the importing algorithm, the SHAs of the commits in your local tree will match the commits of the lpusip/lpusdp trees. '''Note that the -d path should not exist and it must be provided as an absolute path.'''
==== Local usage ====

While the intention is to use the lpusip repositories as the remotes for merge requests, it is also possible to run the importer fully locally and not push to a remote.

`usd import --no-push <srcpkgname> -d /path/to/repository/`

This will run the import algorithm locally, which can take some time, leaving the repository in `/path/to/repository`, but not pushing to any remotes. By the nature of the importing algorithm, the SHAs of the commits in your local tree will match the commits of the lpusip trees. '''Note that the -d path should not exist and it must be provided as an absolute path.'''
Line 280: Line 328:
== git-dsc-commit ==

{{{
usage: git-dsc-commit [--tree-only] DSCFILE

Untars the version specified by the DSCFILE and commits it to a git repository.
=== usd clone ===

{{{
usage: usd clone [-h] [-v] [--retries RETRIES]
                 [--retry-backoffs RETRY_BACKOFFS] [--proto [git|http|https]]
                 [--no-launchpad-user] [-l LAUNCHPAD_USER]
                 package [directory]

Clone package to a directory

positional arguments:
  package Name of source package to clone
  directory Local directory to clone to. If not specified, a directory with the same name as PACKAGE will be used
Line 288: Line 343:
  --tree-only Only call git-write-tree on the result.
                        git-commit-tree will need to be manually
                        invoked to commit the changes to the
                        repository.
}}}

Available from [[https://code.launchpad.net/~usd-import-team/usd-importer/+git/usd-importer|Launchpad git repository]].

== git-reconstruct-changelog ==

{{{
usage: git-reconstruct-changelog COMMITISH

Replays git commit messages starting after COMMITISH into debian/changelog.
}}}

Available from [[https://code.launchpad.net/~usd-import-team/usd-importer/+git/usd-importer|Launchpad git repository]].

== git-merge-changelogs ==

{{{
usage: git-merge-changelogs BASE_COMMITISH NEWA_COMMITISH NEWB_COMMITISH

Runs dpkg-mergechangelogs on the debian/changelogs from the passed commitishs.
}}}

Available from [[https://code.launchpad.net/~usd-import-team/usd-importer/+git/usd-importer|Launchpad git repository]].

== xgit ==

{{{
usage: xgit

Either 'enters' or 'exits' an xgit-configured git repository. Such a repository
as a git/ and gitwd/ directory structure, where git/ is the GIT_DIR and gitwd/
is the GIT_WORK_TREE. This allows for easier git-dsc-commit invocation and
clarity on what is in the working tree and what is not.
}}}

Available from [[https://code.launchpad.net/~usd-import-team/usd-importer/+git/usd-importer|Launchpad git repository]].

== usd-clone ==

{{{
Usage: usd-clone [options] package [dir]
   clone package to dir

    options:
          --git [default] use protocol git
          --http use protocol http
          --https use protocol https
     -v | --verbose be more verbose.

          --no-launchpad-user do not prompt for launchpad user
     -l | --launchpad-user USER launchpad user is USER

Must provide package.
}}}

A simple helper script which does not rely on the lpusip/lpusdp insteadof definitions. Instead it configures a local repository with appropriate remotes and tracking branches.
  -h, --help show this help message and exit
  -v, --verbose Increase verbosity
  --retries RETRIES Number of times to attempt to retry downloading from Launchpad.
  --retry-backoffs RETRY_BACKOFFS
                        Comma-separated list of backoffs in seconds to use between each retry attempt. Default is exponential backoff.
  --proto [git|http|https]
                        Specify protocol to use for fetch. Default: git
  --no-launchpad-user Do not prompt for launchpad user
  -l LAUNCHPAD_USER, --launchpad-user LAUNCHPAD_USER
                        Specify launchpad user

Example:
   * clone to open-iscsi/
     usd clone open-iscsi
   * clone to ubuntu.git
     usd clone open-iscsi ubuntu.git
   * use https rather than git protocol for read-only remotes:
     usd clone --https open-iscsi
}}}

A subcommand which does not rely on the lpusip insteadof definition (and creates them when not found). Instead it configures a local repository with appropriate remotes and tracking branches.
Line 351: Line 367:
== usd-merge ==

{{{
usage: usd-merge tag|reconstruct|commit [-f] <commitish> [<onto>]

  tag: create old/ubuntu, old/debian and new/debian tags for
       the specified Ubuntu merge.
  reconstruct: break the specified Ubuntu merge into a
               sequence of non-git-merge-commits suitable
               for rebasing.
  commit: appropriately parent the executed merge to align
          with usd-import. Also possibly moves the reference
          of <commitish> if it is a head name.

  - <commitish> is a reference to a commit whose corresponding
    version is to be merged.
  - <onto> is a reference to a commit whose corresponding
     version to prepare to merge with. If not specified,
     debian/sid is used.

  -f indicates to overwrite existing tags, where applicable
=== usd merge ===

{{{
usage: usd merge [-h] [-v] [-d DIRECTORY] [-f] [--tag-only] commitish [onto]

Given a usd-import'd tree, assist with an Ubuntu merge

positional arguments:
  commitish A reference to a commit whose corresponding version is to be merged.
  onto A reference to a commit whose corresponding version to prepare to merge with. If not specified, debian/sid is used. If <onto> does not already exist as a local branch, it will be
                        created and track lpusip/<onto>.

optional arguments:
  -h, --help show this help message and exit
  -v, --verbose Increase verbosity
  -d DIRECTORY, --directory DIRECTORY
                        Use git repository at specified location.
  -f, --force Overwrite existing tags and branches, where applicable.
  --tag-only When rebasing a previous merge, only tag old/ubuntu, old/debian and new/debian.

Creates old/ubuntu, old/debian and new/debian tags for the specified Ubuntu merge.
Breaks the specified Ubuntu merge into a sequence of non-git-merge-commits suitable for rebasing.
Line 376: Line 392:
A simple helper script entitled which takes a usd-clone'd tree and a A subcommand which takes a `usd clone`'d tree and a
Line 402: Line 418:
=== usd tag ===

{{{
usage: usd tag [-h] [-v] [--format FORMAT] [-d DIRECTORY] [-f] [commitish]

Given a usd-import'd tree, tag a commit respecting DEP14

positional arguments:
  commitish Commitish to tag

optional arguments:
  -h, --help show this help message and exit
  -v, --verbose Increase verbosity
  --format FORMAT Use this format when tagging commit
  -d DIRECTORY, --directory DIRECTORY
                        Use git repository at specified location.
  -f, --force Overwrite existing tags and branches, where applicable.

Working tree must be clean.
}}}

A subcommand which tags the given commitish with the specified format, following the DEP14 requirements. The base version is read from debian/changelog at that commitish.

By default, this will create an upload tag suitable for pushing to the importer's repository.

Available from [[https://code.launchpad.net/~usd-import-team/usd-importer/+git/usd-importer|Launchpad git repository]].

== git-dsc-commit ==

{{{
usage: git-dsc-commit [--tree-only] DSCFILE

Untars the version specified by the DSCFILE and commits it to a git repository.

optional arguments:
  --tree-only Only call git-write-tree on the result.
                        git-commit-tree will need to be manually
                        invoked to commit the changes to the
                        repository.
}}}

Available from [[https://code.launchpad.net/~usd-import-team/usd-importer/+git/usd-importer|Launchpad git repository]].

== git-reconstruct-changelog ==

{{{
usage: git-reconstruct-changelog COMMITISH

Replays git commit messages starting after COMMITISH into debian/changelog.
}}}

Available from [[https://code.launchpad.net/~usd-import-team/usd-importer/+git/usd-importer|Launchpad git repository]].

== git-merge-changelogs ==

{{{
usage: git-merge-changelogs BASE_COMMITISH NEWA_COMMITISH NEWB_COMMITISH

Runs dpkg-mergechangelogs on the debian/changelogs from the passed commitishs.
}}}

Available from [[https://code.launchpad.net/~usd-import-team/usd-importer/+git/usd-importer|Launchpad git repository]].

== xgit ==

{{{
usage: xgit

Either 'enters' or 'exits' an xgit-configured git repository. Such a repository
as a git/ and gitwd/ directory structure, where git/ is the GIT_DIR and gitwd/
is the GIT_WORK_TREE. This allows for easier git-dsc-commit invocation and
clarity on what is in the working tree and what is not.
}}}

Available from [[https://code.launchpad.net/~usd-import-team/usd-importer/+git/usd-importer|Launchpad git repository]].

The Ubuntu Server Team has devised a git-based workflow for merges. It relies on a set of tools written to assist in the process, but the underlying driver is a basic git-rebase process. This page will attempt to describe the tools used, and the general workflow, with an example or two. Finally, there will be some notes about corner-cases or caveats to the process that might need special-handling.

There are two aspects to the workflow: on the one had is a the importer logic, which relates to the construction of the repository(ies) in Launchpad for source package, and is documented in brief here mostly for transparency and documentation; on the other hand are tools for using the git repositories in Launchpad to do bugfixes and merges, which most likely the section of interest to developers.

NB: this page is a work in progress and no guarantees are asserted as to its correctness while it is being fleshed out.

Git configuration

Throughout this documentation, we will make reference to several git 'insteadof' shortcuts, which can be placed into .gitconfig as:

[url "git+ssh://yourusername@git.launchpad.net/~ubuntu-server-dev/ubuntu/+source/"]
    insteadOf = ldusdp:
[url "git+ssh://yourusername@git.launchpad.net/~usd-import-team/ubuntu/+source/"]
    insteadOf = lpusip:
[url "git+ssh://yourusername@git.launchpad.net/~yourusername/ubuntu/+source/"]
    insteadOf = lpmep:

Important note: lpusip and lpusdp are used somewhat interchangeably on this page, to refer to the 'canonical' (little c) imported git tree. lpusip is used currently as a staging area while we work through bugs in the importer and the process documented here. Once we have accepted this tooling as the "default", we will move to lpusdp and lpusip will probably be decommisioned.

Git workflow for merging

Algorithm outline

  1. Obtain git tree.
  2. Deconstruct current Ubuntu delta into logical commits.
  3. Rebase delta onto latest Debian release.
  4. Build/test.
  5. Reconstruct debian/changelog for new version.
  6. Update metadata for new version.
  7. Upload.

Detailed workflow

This guide assumes we are attempting to merge the version of <source package name> in the latest Ubuntu series with the latest Debian unstable version. If that is not the case, you might need to pass different commitishes to usd merge and/or specify the onto. See below for details.

  1. Obtain git tree.
    1. See if there is already an imported tree at https://code.launchpad.net/~usd-import-team/+git.

      1. If there is, check if it is current. This usually means checking rmadison and ensuring that both 'debian/sid' and 'ubuntu/devel' are consistent with it. This eventually should not be necessary as we will run the importer in a cronjob.

        1. If it is, proceed to the next step.
        2. If it is not, send an e-mail to the Ubuntu Server list asking for it to be updated or import it locally (see the usd import section). You should eventually get a reply with a reference to the imported tree.

      2. If there is not, send an e-mail to the Ubuntu Server list asking for it to be imported or import it locally (see the usd import section). You should eventually get a reply with a reference to the imported tree.

    2. usd clone <source package name>

      1. Feel free to use git directly with other git configuration flags, etc. as desired, but this guide will only cover the use of the usd clone tool. Similar results can be achieve throughout this guide with appropriate git subcommands, but YMMV.

  2. Deconstruct current Ubuntu delta into logical commits.
    1. cd into the just created dir cd <source package name>

    2. usd merge ubuntu/devel

      1. This will create a local 'debian/sid' branch that tracks 'importer/debian/sid'.
      2. This will create 3 tags (you might need to pass '-f' if the tags already exist).
        1. 'old/ubuntu': will point to the same commit as ubuntu/devel tip and represents the current state of Ubuntu for this source package. In other words, this tag points to a commit corresponding to the latest Ubuntu version and containing the complete Ubuntu delta.
        2. 'old/debian': will point to the commit that is a common ancestor of both ubuntu/devel tip and debian/sid tip, in other words the commit corresponding to the version last merged with in Debian.
        3. 'new/debian': will point to debian/sid tip, in other words the commit corresponding to the version to be merged with and the latest version in Debian unstable.
      3. You may want to verify the tags (with git show <tag>) are pointing to the expected commits/versions.

        1. especially if you are re-merging something formerly done with this process you will need "-f" on usd merge otherwise the tags will still point to the last merge revisions.

      4. This will replay the git-merged delta into a sequence of linear non-merge commits.
        1. In the importer algorithm, explained later, each imported version is possibly a git merge. If you were to directly rebase 'old/ubuntu' onto 'debian/sid', the merges would be replayed, which will typically fail.
        2. Instead, this will replay the current ubuntu delta back onto 'old/debian', but dropping the merge commits as artifacts of the usd import algorithm.

        3. The end result, which will be the checked-out if successful, is a sequence of git-cherry-picks of published Ubuntu versions after the 'old/debian' version that are not merges (but are otherwise identical to the sequence of commits in 'old/ubuntu'.

        4. In this process, there might be some empty commits cherry-picked over. This is the result of, e.g., copy-forwards between series (Y -> Z) or pockets (proposed -> release). To maximize the information retained, these empty commits are retained in the reconstruct, but will be dropped in the deconstruct phase.

      5. If development occurred in the git tree previously, and that work was uploaded and tagged (e.g., upload/<version>), it's possible that some of the following steps can be skipped. This reflects the fact that the imported version is logically already deconstructed in the git tree.

      6. This commit is tagged as 'reconstruct/<ubuntu version>'.

        1. Please note that our convention is to use '{reconstruct,deconstruct,logical}/<version>' (with standard dep14 substitutions). This allows us to store multiple tags associated with multiple versions for archival purposes.

    3. git rebase -i old/debian

      1. Interactively rebase the reconstructed Ubuntu delta and edit ('e' in the rebase options) each cherry-picked commit into its components.
        1. While we will try to cover as many cases as possible in this document (when final), the man git-rebase "INTERACTIVE MODE" section is probably still worth reviewing.

        2. In the editor provided by git-rebase, there are two cases to consider:

          1. For commits of imports to the git tree (typically with messages like 'Import version <version> to <distribution>/<series>[-<pocket>]'), modify the 'p'/'pick' line to 'e'/'edit'.

          2. For commits that are already logical changes (typically this is the result of a prior merge using this process, or active development in the ubuntu-server-dev git tree), the line can be left unmodified ('p'/'pick').
        3. As the git-rebase process stops at each commit, run git reset HEAD^, which will unstage each commit.

        4. See what was previously in the commit at this point with git-diff. In particular, we are interested in what is indicated by 'debian/changelog' as being contained in this published Ubuntu version.

        5. For each logical change listed in git diff -- debian/changelog:

          1. Run git add -i (interactive add) to stage a commit for the change.

          2. Run git commit to commit the staged changes, using the corresponding 'debian/changelog' entry as the commit message.

          3. Sometimes, there will be changes in a published release that are not mentioned in 'debian/changelog'. It is recommended to commit each of these as a new commit after those that are listed in 'debian/changelog', with an appropriate commit message, appending '[previously undocumented]'.
        6. The remaining changes should only be to 'debian/changelog' (the actual changelog entries) and 'debian/control' (VCS/maintainer modifications). This is verifiable by examining git diff -p and git diff.

          1. Commit all the 'debian/changelog' entries for this step with commit message 'changelog'.
          2. Commit any debian/control metadata (VCS, Maintainer) for this step with commit message 'update-metadata'.
        7. The result at the end of each rebase step is no modifications are lost/gained relative to the old commit (which no longer applies in the current state).
          1. At this point, git diff should report no unstaged changes. Run git rebase --continue and repeat the previous steps for the next published Ubuntu version.

      2. The end result of the above loop will be a sequence of smaller commits, one per 'debian/changelog' entry (with potentially additional commits for previously undocumented changes).
        1. The final commit will represent a broken-out history (viewable with git-log) for the latest Ubuntu version and no contentful differences to that Ubuntu version.

        2. This can be verified with git diff -p old/ubuntu.

    4. usd tag --format='deconstruct/%(version)s'

      1. Tag the final commit for easy reference and review.
    5. git rebase -i old/debian

      1. Interactively rebase the deconstructed Ubuntu delta and drop 'changelog' and 'update-metadata' changes, by simply dropping those lines from the rebase todo file.
      2. An additional goal in this step is to consolidate the delta, e.g. sometimes a change is added in one Ubuntu release and then removed in a subsequent Ubuntu release. The changes, in this case, should simply be dropped.
      3. These changes will be easily reproducible from this process and will lead to merge conflicts with the final rebase.
      4. The final commit will represent a consolidated broken-out history (viewable with git-log) for the latest Ubuntu version, without changes to 'debian/changelog' or to the metadata in 'debian/control'.

        1. This can be verified with git diff -p old/ubuntu which should indicate the only changes are in 'debian/changelog' and 'debian/control'.

    6. usd tag --format='logical/%(version)s'

      1. Tag this commit for easy reference and review.
  3. Rebase delta onto latest Debian release.
    1. git rebase -i new/debian

      1. Replay the logical delta onto the latest Debian release.
      2. This is again an interactive rebase, and without prior knowledge, no edits to the rebase commands are necessary (leave all lines as 'p'/'pick').
      3. It is possible individual logical changes no longer apply. A few common reasons and solutions are:
        1. The context for the patch has changed, so a manual edit of the commit is necessary.
        2. The change has been integrated in the new Debian version. In this case, there is no logical change in the new delta. However, for the purposes of reconstructing the changelog later, it is important to document what parts of the old delta have been dropped and why. It is recommended, therefore, to use git status --ignored to verify the current rebase progress before issuing git rebase --continue and if a logical commit becomes empty, to use git commit --allow-empty to specify that a given change is now 'Dropped' and ideally why, e.g., 'Fixed in Debian <version>'.

  4. Build/test.
    1. Explain sbuild / point to it.
  5. Reconstruct debian/changelog for new version.
    1. git merge-changelogs old/debian old/ubuntu new/debian

      1. This rebuilds the changelog for published versions from old/debian to new/debian, inserting Ubuntu releases as appropriate.
    2. git commit -m 'merge-changelogs' debian/changelog

    3. git reconstruct-changelog new/debian

      1. This replays the commit messages for all commits since new/debian on the current branch into debian/changelog in a new entry.
      2. Note that the new entry is 'UNRELEASED' and should be updated, and it's possible you will need to reorganized the replayed entries.
    4. git commit -m 'reconstruct-changelog' debian/changelog

      1. It is appropriate to either commit the reconstruct-changelog result and then make changes, followed by a second commit with the final changelog; or to not commit reconstruct-changelog and then make changes, followed by a commit with the final changelog. In either case, the result of this step should be a changelog entry which fully covers all the delta, and explains any dropped or added changes.
  6. Update metadata for new version.
    1. update-maintainer

      1. This updates the maintainer entry in the control file appropriately for Ubuntu source packages.
    2. git commit -m 'update-maintainer' debian/control

  7. Consider some Cleanup and check open Bugs
    1. Go to https://bugs.launchpad.net/ubuntu/+source/<source package name>. There check if any open bugs are either:

      1. closed already but not updated yet => close them

      2. likely closed, but need verification => notify reporter

      3. would be reasonable to add on top of the merge now that the package is touched anyway => implement

    2. Check all you have listed as "Remaining changes" in your changelog and consider pushing as much as possible to Debian.
  8. Push and review.
    1. git checkout -b merge

      1. if you happened to have a merge branch for this source already, recommended branch names to avoid conflicts are 'merge-<release>' and if multiple merges happen in one release 'merge-<release>-<version>'

      2. The MR will be based off this branch, feel free to name it something else.
      3. You will see those commits again next time this is merged. Please see the Workflow commentary for details on squashing changes (optional on the merge, but required on creating logical).

    2. git push <launchpad user> merge old/debian new/debian old/ubuntu reconstruct/<ubuntu version> \

      • deconstruct/<ubuntu version> logical/<ubuntu version>

      • The remote name here, <launchpad user>, is an artifact of usd clone. If you used git directly, you might push to lpme:<source package name>, e.g.

    3. Go to the Launchpad page of your just uploaded merge branch and propose for merging into the USD git project: ~<yourusername>/ubuntu/+source/<yourpackage>/+git/<yourpackage>/+ref/merge

      1. usually you just search for the package you want to upload and will find the related usd importer tree. For example ~usd-import-team/ubuntu/+source/<yourpackage>`

      2. As target use debian/sid or whatever you used to rebase on

      3. Discussions, new revisions and so on will be handled on that merges launchpad page. It is typical to file merges as Launchpad bugs as well, so ensure that the appropriate bug is mentioned in debian/changelog (e.g., 'Merge with Debian unstable (LP: #...). Remaining changes:') and Launchpad will automatically refer to your MR in the bug.
  9. Upload (work in progress!)
    1. not sure if eventually the tooling will do so, but whoever uploads after the review is done should tag and push an uploaded tag. That is used later on to provide the split history instead of the squashed import to the next user of this process. usd tag

    2. usd merge commit ubuntu/<latest series>

    3. `git push lpusdp:<source package name>

      1. Presumes you have write rights to the USD git repository.

Workflow commentary

During the review of a merge, sometimes changes are needed and these usually will get added on to the end rather than being squashed in. We think this approach is easier. We don't object to the merge being redone, and everything squashed in, if desired or if it is decided it is worth it in a particular case, but in the general case we don't think it is necessary.

But that means that the merge branch will often not be squashed. And on a re-merge, there may be extra uploads that were done after the merge upload.

So we think it makes sense to always do the squashing before doing the logical tag at the start of a merge. The previous merge should help significantly with this, but will not be sufficient in the general case.

This would also have the advantage that the logical tag has a strict definition: a logical tag must always consist of squashed commits. In other words, it a logical tag should never have commits that can be squashed. Of course, what can be squashed is subjective, so different developers won't necessarily produce identical logical commits.

-- Proposal until discussed -- The reason why one might suddenly be able to squash more than on logical is that due to Debian or Upstream changing there might be new opportunities to do so. But it turned out to be most useful to not squash (everything) on the merge branch.

In fact only the part that reflects the rebased version of the old logical branch should be re-squashed, but not any new change that made it into the merge. On one hand that makes it more easy for developer and reviewer to check what is supposed to represent the rebase of the old delta (and if that is done right) and on the other hand it clearly shows what are new changes that likely should be mentioned in the changelog as added changes.

It can be quite useful however to store the knowledge what could be squashed and actually anything else interesting for the next "merger" along those commits in the merge branch. So if there is anything reasonable to save we recommend to use git notes to add those along the commits of the merge branch.

TODO: add on how to get git configured to keep notes on rebase TODO: alternative interesting suggestion annotated tags (maybe on the upload tag) -- End Proposal until discussed --

Tools: their usage, and where to get them

usd

usage: usd [-h] [-P PARENTFILE] [-L PULLFILE]
           build|build-source|clone|import|merge|tag ...

Ubuntu Server Dev git tool

positional arguments:
  build|build-source|clone|import|merge|tag
                        
                        build - Build a usd-cloned tree with
                        dpkg-buildpackage
                        build-source - Build a source package and changes
                        file
                        clone - Clone package to a directory
                        import - Update a launchpad git tree based upon
                        the state of the Ubuntu and Debian archives
                        merge - Given a usd-import'd tree, assist with an
                        Ubuntu merge
                        tag - Given a usd-import'd tree, tag a commit
                        respecting DEP14

optional arguments:
  -h, --help            show this help message and exit
  -P PARENTFILE, --parentfile PARENTFILE
                        File specifying parent-child relationship
                        overrides as:
                        <pkgname> <child version> <publish parent version> <changelog parent version>
                        with one override per line.
                        default=/home/nacc/work/usd-importer/usd/parent_overrides.txt
  -L PULLFILE, --pullfile PULLFILE
                        File specifying source files to use instead of
                        Launchpad to work around source file shadowing:
                        <pkgname> <version> <URL of DSC file> <URLs of orig files>
                        with one package per line. '-' for the DSC file indicates to use the
                        one from Launchpad.
                        default=/home/nacc/work/usd-importer/usd/pull_overrides.txt

Available from Launchpad git repository.

Top-level command to all the Ubuntu Server Dev git-manipulating tools.

usd import

usage: usd import [-h] [-v] [--retries RETRIES]
                  [--retry-backoffs RETRY_BACKOFFS] [--proto [git|http|https]]
                  [-o LP_OWNER] [-l LP_USER] [--dl-cache DL_CACHE] [--no-push]
                  [--no-clean] [-d DIRECTORY]
                  package

Update a launchpad git tree based upon the state of the Ubuntu and Debian
archives

positional arguments:
  package               Which package to update in the git tree

optional arguments:
  -h, --help            show this help message and exit
  -v, --verbose         Increase verbosity (default: False)
  --retries RETRIES     Number of times to attempt to retry downloading from
                        Launchpad. (default: 3)
  --retry-backoffs RETRY_BACKOFFS
                        Comma-separated list of backoffs in seconds to use
                        between each retry attempt. Default is exponential
                        backoff.
  --proto [git|http|https]
                        Specify protocol to use for fetch. Default: git
  -o LP_OWNER, --lp-owner LP_OWNER
                        Which launchpad user's tree to update (default: usd-
                        import-team)
  -l LP_USER, --lp-user LP_USER
                        Specify the Launchpad user to use (default: nacc)
  --dl-cache DL_CACHE   Cache directory for downloads. Default is to put
                        downloads in <directory>/.git/usd-cache
  --no-push             Do not push to the remote (default: False)
  --no-clean            Do not clean the temporary directory (default: False)
  -d DIRECTORY, --directory DIRECTORY
                        Use git repository at specified location rather than a
                        temporary directory (implies --no-clean). Will create
                        the local repository if needed.

Available from Launchpad git repository.

The primary problem we are trying to solve is how to make merges consistent across the server team, and, ideally easy to review for sponsors/uploaders.

Robie Basak and others came up with a git-based workflow (documented broadly here and hopefully clarified on this page). This workflow 'just' uses git (the only addition to 'stock' git are a few commands (git-dsc-commit, git-merge-changelogs, git-reconstruct-changelog) from Launchpad git repository.)) to effectively rebase the ubuntu tip onto the latest debian tip. That presumes you spent the time yourself to create a repository with commits representing the current states of debian unstable and the ubuntu development release.

The goal for the importer is to have canonical (little c) location for such commits to live, per-package. Everyone can refer to commits and tags in that tree, and they will have well-defined semantics and share SHA1s.

A secondary problem was obtaining the 'complete' history for a given source package. This would allow a user to git-blame a give file and get useful data. So we extended the algorithm (that Robie designed) to be more flexible. After hitting many corner-cases during implementation, we scrapped our complicated algorithm that produced clean trees for a clean algorithm that produces complicated trees.

Feel free to skip the next section if you're not interested in the implementation.

Algorithmic discussion

In essence, the algorithm looks at Launchpad's publishing history for versions it hasn't seen before (which if an empty or no local repository is specified and you aren't cloning an existing repository will be all of them). For each such version, it uses pull-lp-source/pull-debian-source equivalents and git-dsc-commit to import them into the git repository. Technically it uses a lower-level command then a proper commit (git write-tree and `git commit-tree`), so that we can get the imported tree, examine it and find its parents and then commit it. The parents for an imported tree are at most 2:

  1. The last version imported into the same series/pocket, with some knowledge of how to establish a new series/pocket.
  2. The last debian/changelog entry (using debian/changelog from the just-imported tree) that was successfully imported.

We call these the 'publishing parent' and 'changelog parent' respectively. Now, if we can't find either of these, we will orphan the import and if we only find one, we'll use what we have. But the resulting tree looks like many git-merges, even where there are not ubuntu-merges. This is correct by the algorithm but can be confusing to the original git-rebase workflow, because rebase will try to replay the git-merges and that doesn't work. More on this later.

Local usage

While the intention is to use the lpusip repositories as the remotes for merge requests, it is also possible to run the importer fully locally and not push to a remote.

usd import --no-push <srcpkgname> -d /path/to/repository/

This will run the import algorithm locally, which can take some time, leaving the repository in /path/to/repository, but not pushing to any remotes. By the nature of the importing algorithm, the SHAs of the commits in your local tree will match the commits of the lpusip trees. Note that the -d path should not exist and it must be provided as an absolute path.

Now that you have a local import, it's probably best to perform the merge steps in a separate clone, e.g.

$ git clone -n /path/to/repository/git mergewd

Now you can do all the merge steps described above in mergewd. That way if you mess up and need to start again, your import directory is still pristine.

Also, because you'll likely need the orig.tar.gz for the new (Debian) version, you will find that in /path/to/repository. Copy that or symlink it to the parent directory of mergewd so debuild or whatever you use can find it.

usd clone

usage: usd clone [-h] [-v] [--retries RETRIES]
                 [--retry-backoffs RETRY_BACKOFFS] [--proto [git|http|https]]
                 [--no-launchpad-user] [-l LAUNCHPAD_USER]
                 package [directory]

Clone package to a directory

positional arguments:
  package               Name of source package to clone
  directory             Local directory to clone to. If not specified, a directory with the same name as PACKAGE will be used

optional arguments:
  -h, --help            show this help message and exit
  -v, --verbose         Increase verbosity
  --retries RETRIES     Number of times to attempt to retry downloading from Launchpad.
  --retry-backoffs RETRY_BACKOFFS
                        Comma-separated list of backoffs in seconds to use between each retry attempt. Default is exponential backoff.
  --proto [git|http|https]
                        Specify protocol to use for fetch. Default: git
  --no-launchpad-user   Do not prompt for launchpad user
  -l LAUNCHPAD_USER, --launchpad-user LAUNCHPAD_USER
                        Specify launchpad user

Example:
   * clone to open-iscsi/
     usd clone open-iscsi
   * clone to ubuntu.git
     usd clone open-iscsi ubuntu.git
   * use https rather than git protocol for read-only remotes:
     usd clone --https open-iscsi

A subcommand which does not rely on the lpusip insteadof definition (and creates them when not found). Instead it configures a local repository with appropriate remotes and tracking branches.

Available from Launchpad git repository

usd merge

usage: usd merge [-h] [-v] [-d DIRECTORY] [-f] [--tag-only] commitish [onto]

Given a usd-import'd tree, assist with an Ubuntu merge

positional arguments:
  commitish             A reference to a commit whose corresponding version is to be merged.
  onto                  A reference to a commit whose corresponding version to prepare to merge with. If not specified, debian/sid is used. If <onto> does not already exist as a local branch, it will be
                        created and track lpusip/<onto>.

optional arguments:
  -h, --help            show this help message and exit
  -v, --verbose         Increase verbosity
  -d DIRECTORY, --directory DIRECTORY
                        Use git repository at specified location.
  -f, --force           Overwrite existing tags and branches, where applicable.
  --tag-only            When rebasing a previous merge, only tag old/ubuntu, old/debian and new/debian.

Creates old/ubuntu, old/debian and new/debian tags for the specified Ubuntu merge.
Breaks the specified Ubuntu merge into a sequence of non-git-merge-commits suitable for rebasing.
Working tree must be clean.

A subcommand which takes a usd clone'd tree and a commitish and attempts to give you a reconstructed sequence of linear commits that represent the same state as the commitish. It does this by using merge-base to figure out the common ancestor (it assumes onto is debian/sid but it also accepts a parameter) and then playing back the git history for commits between the merge-base and commitish. It then cherry-picks those tags from oldest to newest against the merge-base and does a quick sanity check that the resulting commit does not differ from the original commitish.

It tags that as reconstruct/<version> which may conflict with the git-based workflow some have been using previously. In that workflow, reconstruct/<version> is the broken-down sequence of changes including changelog and metadata, where each commit is a single change from the changelog. I have taken to now calling that pointer deconstruct/<version> because it's clever.

So you would break down reconstruct/<version> into its constituent changes (per debian/changelog for each version) and tag the resulting end-commit as deconstruct/<version>.

That can then be broken up by our workflow into a logical/<version> tag and then rebased onto debian/sid (or the specified onto).

Available from Launchpad git repository.

usd tag

usage: usd tag [-h] [-v] [--format FORMAT] [-d DIRECTORY] [-f] [commitish]

Given a usd-import'd tree, tag a commit respecting DEP14

positional arguments:
  commitish             Commitish to tag

optional arguments:
  -h, --help            show this help message and exit
  -v, --verbose         Increase verbosity
  --format FORMAT       Use this format when tagging commit
  -d DIRECTORY, --directory DIRECTORY
                        Use git repository at specified location.
  -f, --force           Overwrite existing tags and branches, where applicable.

Working tree must be clean.

A subcommand which tags the given commitish with the specified format, following the DEP14 requirements. The base version is read from debian/changelog at that commitish.

By default, this will create an upload tag suitable for pushing to the importer's repository.

Available from Launchpad git repository.

git-dsc-commit

usage: git-dsc-commit [--tree-only] DSCFILE

Untars the version specified by the DSCFILE and commits it to a git repository.

optional arguments:
  --tree-only           Only call git-write-tree on the result.
                        git-commit-tree will need to be manually
                        invoked to commit the changes to the
                        repository.

Available from Launchpad git repository.

git-reconstruct-changelog

usage: git-reconstruct-changelog COMMITISH

Replays git commit messages starting after COMMITISH into debian/changelog.

Available from Launchpad git repository.

git-merge-changelogs

usage: git-merge-changelogs BASE_COMMITISH NEWA_COMMITISH NEWB_COMMITISH

Runs dpkg-mergechangelogs on the debian/changelogs from the passed commitishs.

Available from Launchpad git repository.

xgit

usage: xgit

Either 'enters' or 'exits' an xgit-configured git repository. Such a repository
as a git/ and gitwd/ directory structure, where git/ is the GIT_DIR and gitwd/
is the GIT_WORK_TREE. This allows for easier git-dsc-commit invocation and
clarity on what is in the working tree and what is not.

Available from Launchpad git repository.

Example(s)

Already imported trees live, currently, at: https://code.launchpad.net/~usd-import-team/+git.

Currently, because once we feel confident in the utility and correctness of the importer, we'll move them to https://code.launchpad.net/~ubuntu-server-dev/+git.

Caveats

All of this tooling is not meant to replace or reproduce any prior tools or works. And it is definitely not meant to replace a basic understanding of what a merge is and why they are necessary. The tooling is meant to make merges easier, but they are still not foolproof and require care and thought.

UbuntuDevelopment/Merging/GitWorkflow (last edited 2023-01-17 15:54:05 by racb)