1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
Git repository
==============
Regular debian development goes in the 'master' branch.
Obtaining snapshot releases from upstream
=========================================
To get a tarball for the current upstream source, first add upstream Git as the
'upstream-git' remote:
git remote add upstream-git https://github.com/mariuz/flamerobin.git
git fetch upstream-git
then run:
sh debian/pack-upstream-snapshot.sh
This will export the HEAD from upstream Git repository and pack it
into a a tarball named
flamerobin_$version~<$date>.<commit>.orig.tar.xz where $date is
the date of the commit.
|