diff options
author | maximilian attems <maks@debian.org> | 2010-06-18 11:25:03 +0200 |
---|---|---|
committer | maximilian attems <maks@debian.org> | 2010-06-18 11:25:03 +0200 |
commit | 22d996c1b3bf29e2b665db695414441ec21c7270 (patch) | |
tree | 3f2f8a396b46cfbcc210e9e3d375a9644c6ce248 /docs | |
parent | 6af23c2bb403323fef33e830770c832616a7911b (diff) | |
download | initramfs-tools-22d996c1b3bf29e2b665db695414441ec21c7270.tar.gz initramfs-tools-22d996c1b3bf29e2b665db695414441ec21c7270.zip |
maintainer doc: use git commands without the dash
plus minor changes:
- initramfs-tools uses master branches.
- DEBEMAIL and friends affects devscripts.
Signed-off-by: maximilian attems <maks@debian.org>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/maintainer-notes.html | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/docs/maintainer-notes.html b/docs/maintainer-notes.html index e8d36ea..9858201 100644 --- a/docs/maintainer-notes.html +++ b/docs/maintainer-notes.html @@ -80,7 +80,7 @@ or online at <a </pre> </li> -<li>Set environment variables (e.g. through your ~/.bashrc or ~/.zshrc) for git and git-dch: +<li>Set environment variables (e.g. through your ~/.bashrc or ~/.zshrc) for git and devscripts (git dch): <pre> <b>export DEBEMAIL=$mailaddress export DEBFULLNAME=$yourname @@ -130,7 +130,7 @@ export GIT_COMMITTER_NAME=$yourname</b> </pre> <b>NOTE:</b> Use 'Closes: #BUGID' for closing a bugreport and 'Thanks: Fullname -<<code><i>mailaddress</i></code>>' for giving credits in your commit message. git-dch will use +<<code><i>mailaddress</i></code>>' for giving credits in your commit message. git dch will use this information for generating the changelog using the --meta option later on. @@ -200,14 +200,14 @@ on. <li>Adjust debian/changelog accordingly: <pre> -<b>% git-dch --debian-branch="$(git branch | awk -F\*\ '/^* / { print $2}' )" \ +<b>% git dch --debian-branch="$(git branch | awk -F\*\ '/^* / { print $2}' )" \ --since="$(dpkg-parsechangelog | awk '/^Version:/ {print $2}')" -S --id-length=7 --meta</b> </pre> </li> <li>Build package: <pre> -<b>% git-buildpackage --git-debian-branch="$(git branch | awk -F\*\ '/^* / { print $2}' )" -tc</b> +<b>% git buildpackage --git-debian-branch="$(git branch | awk -F\*\ '/^* / { print $2}' )" -tc</b> </pre> </li> @@ -222,14 +222,14 @@ on. <li>Adjust debian/changelog accordingly: <pre> -<b>% git-dch --debian-branch="$(git branch | awk -F\*\ '/^* / { print $2}' )" \ +<b>% git dch --debian-branch="$(git branch | awk -F\*\ '/^* / { print $2}' )" \ --since="$(dpkg-parsechangelog | awk '/^Version:/ {print $2}')" -S --id-length=7 --meta</b> </pre> </li> <li>Build package: <pre> -<b>% git-buildpackage --git-debian-branch="$(git branch | awk -F\*\ '/^* / { print $2}' )" -tc [-us -uc]</b> +<b>% git buildpackage --git-debian-branch="$(git branch | awk -F\*\ '/^* / { print $2}' )" -tc [-us -uc]</b> </pre> </li> @@ -265,13 +265,13 @@ on. <li>Creating changelog: <pre> -<b>% git-dch --debian-branch debian --release --since <code><i>HASH</i></code></b> +<b>% git dch --debian-branch master --release --since <code><i>HASH</i></code></b> </pre> or more dynamically: <pre> -<b>% git-dch --meta --release --since v$(dpkg-parsechangelog | awk '/^Version:/ {print $2}') --debian-branch="$(git branch | awk -F\*\ '/^* / { print $2}' )" [--id-length=7] [--full]</b> +<b>% git dch --meta --release --since v$(dpkg-parsechangelog | awk '/^Version:/ {print $2}') --debian-branch="$(git branch | awk -F\*\ '/^* / { print $2}' )" [--id-length=7] [--full]</b> </pre> <b>NOTE:</b> we do not use history based sorting for the changelog entries but |