1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
wtmpdb package maintenance
==========================
The Debian package uses 'patches unapplied' flow following DEP-14, supporting
tools like gbp pq and gbp dch.
Upstream releases take the form of unsigned tags.
Therefore we can merge the upstream tag - the canonical form of the release and
preferred form of modification. For example:
1. git fetch upstreamvcs
2. git merge v0.75.0
3. dch --newversion 0.75.0-1
This keeps the git tree clear of unnecessary noise. The optional pristine-tar
branch is superfluous. But no harm is done if someone does import a tarball out
of familiarity.
To use tag2upload (optional):
1. git debpush --upstream v0.75.0
|