Differences between revisions 5 and 6
Revision 5 as of 2010-07-26 21:11:44
Size: 668
Comment:
Revision 6 as of 2010-07-26 21:29:53
Size: 800
Comment:
Deletions are marked like this. Additions are marked like this.
Line 23: Line 23:
To pull without messing up the local repo:
{{{
git fetch origin master:master upstream:upstream pristine-tar:pristine-tar
}}}

Some personal notes on using git-buildpackage

An alias that's useful to build unsigned packages:

alias git-b="git-buildpackage --git-export-dir=../build-area -us -uc"

To do the original import from an already built Debian package:

git-import-dsc --pristine-tar ../scenic_0.6.3-2.dsc 

To import a new tag:

git-import-orig --pristine-tar ../scenic_0.6.4.orig.tar.gz

To push all branches to origin:

git push origin master upstream pristine-tar --tags

To pull without messing up the local repo:

git fetch origin master:master upstream:upstream pristine-tar:pristine-tar

To build the signed source package:

git-buildpackage --git-export-dir=../build-area -S

See PackagingWithGit and DebianMultimedia/DevelopPackaging