From d6fc8d61ec96d892d75b7e525c05719691da9ecf Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Wed, 9 Nov 2016 10:26:31 -0200 Subject: Development: fix git-tag syntax --- development.mdwn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'development.mdwn') diff --git a/development.mdwn b/development.mdwn index 49a224c..627c2f1 100644 --- a/development.mdwn +++ b/development.mdwn @@ -31,7 +31,7 @@ Create and upload a new release: Tag the release: - git tag -s $(VERSION) -m "Keyringer $(VERSION)" + git tag -s $VERSION -m "Keyringer $VERSION" Update the debian branch: -- cgit v1.2.3 From d57c2b7070f148c1bdccdce2527a7ec0bf33278f Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Wed, 9 Nov 2016 10:31:32 -0200 Subject: Updates develop docs --- development.mdwn | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'development.mdwn') diff --git a/development.mdwn b/development.mdwn index 627c2f1..3287bb2 100644 --- a/development.mdwn +++ b/development.mdwn @@ -50,6 +50,10 @@ Run lintian (or [add it to your pbuilder hooks](http://askubuntu.com/questions/1 lintian --info --display-info --pedantic --color auto \ ../build-area/keyringer_$VERSION*.changes +Then go back to the develop branch: + + git checkout develop + Notes: * `git-import-orig` takes care of running `pristine-tar commit`, of merging of the tag and orig tarball into the upstream branch, and then it merges the result into the debian branch. With the above configuration, it also runs git-dch to do the bulk of the work in `debian/changelog`. -- cgit v1.2.3 From bbdc2a4751137d324771ace36202b97db25a00ca Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Wed, 9 Nov 2016 10:59:15 -0200 Subject: Development: minor lintian command change --- development.mdwn | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'development.mdwn') diff --git a/development.mdwn b/development.mdwn index 3287bb2..3a1ed34 100644 --- a/development.mdwn +++ b/development.mdwn @@ -47,8 +47,7 @@ Build the package from the debian Git branch: Run lintian (or [add it to your pbuilder hooks](http://askubuntu.com/questions/140697/how-do-i-run-lintian-from-pbuilder-dist)): - lintian --info --display-info --pedantic --color auto \ - ../build-area/keyringer_$VERSION*.changes + lintian --info --display-info --pedantic --color auto build-area/keyringer_$VERSION*.changes Then go back to the develop branch: -- cgit v1.2.3