1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
vf1 for Debian
------------
To update vf-1 to a new upstream release, you should
1. Add upstream as a remote:
git remote add upstream https://github.com/solderpunk/VF-1.git
git fetch upstream
2. Determine the most recent version by examining the tags:
git tag
3. Import the new upstream release using gbp-buildpackage.
Where X.Y.Z is the new upstream release,
gbp import-orig --upstream-vcs-tag='vX.Y.Z' --upstream-version X.Y.Z --uscan
-- Ryan Kavanagh <rak@debian.org> Thu, 28 May 2020 13:46:11 -0400
|