Make Debian and Git spelling consistent
authorGuido Günther <agx@sigxcpu.org>
Thu, 22 Jan 2015 13:21:33 +0000 (14:21 +0100)
committerGuido Günther <agx@sigxcpu.org>
Thu, 22 Jan 2015 21:40:09 +0000 (22:40 +0100)
22 files changed:
debian/git-buildpackage.zsh-completion
docs/chapters/building.sgml
docs/chapters/import.sgml
docs/chapters/intro.sgml
docs/chapters/releases.sgml
docs/chapters/special.sgml
docs/manpages/gbp-buildpackage.sgml
docs/manpages/gbp-create-remote-repo.sgml
docs/manpages/gbp-dch.sgml
docs/manpages/gbp-import-dsc.sgml
docs/manpages/gbp-import-orig.sgml
docs/manpages/gbp-pq.sgml
docs/manpages/gbp.sgml
gbp/deb/source.py
gbp/scripts/buildpackage.py
gbp/scripts/clone.py
gbp/scripts/create_remote_repo.py
gbp/scripts/dch.py
gbp/scripts/import_dsc.py
gbp/scripts/import_dscs.py
gbp/scripts/import_orig.py
gbp/scripts/import_srpm.py

index 3ff1e7e03cdb3d10834a7056f42385cb75c928ed..1fc843ec395c34fdba46ee106f50d1c3f3f8c802 100644 (file)
@@ -1,5 +1,5 @@
 #compdef gbp
-#description build debian packages from a git repository
+#description build Debian packages from a Git repository
 
 __gbp_common_options() {
        local prefix="$1"
index 495b58504ea89b89e3c5f79be045d5c099a4185b..3b32fbbfe897ad81ca236e9b3324962e2ec5f665 100644 (file)
@@ -28,7 +28,7 @@
 <screen>
 &gbp-buildpackage; <option>--git-tag</option>
 </screen>
-    <para>This will again build the debian package and tag the final result after
+    <para>This will again build the &debian; package and tag the final result after
     extracting the current version from the changelog. If you want &gpg; signed
     tags you can use the <option>--git-sign</option> and
     <option>--git-keyid</option> options. To save typing these option can be
@@ -146,7 +146,7 @@ echo "done."
 <option>posttag</option>=<replaceable>"gbp-posttag-push"</replaceable>
 </programlisting>
        to your <filename>.gbp.conf</filename> and make sure <filename>gbp-push</filename>
-       is somewhere in your <envar>$PATH</envar>. On Debian
+       is somewhere in your <envar>$PATH</envar>. On &debian;
        systems a more complete example can be found in
        <filename>/usr/share/doc/examples/git-buildpackage/examples/gbp-posttag-push</filename>.
     </para>
@@ -159,7 +159,7 @@ echo "done."
        for the postexport action is to allow further adjustment of
        the sources prior to building the package. A typical use case
        scenario is to allow creating multiple source and binary
-       packages from one Debian branch - e.g. the bootstrap gcc and
+       packages from one &debian; branch - e.g. the bootstrap gcc and
        in the next stage the full gcc.
     </para>
     <para> The postexport action, postpones the creation of the
@@ -179,7 +179,7 @@ echo "done."
 export-dir = ../build-area
 # disable the since the sources are being exported first
 cleaner =
-# post export script that handles expansion of Debian specific files
+# post export script that handles expansion of &debian; specific files
 postexport = crosstoolchain-expand.sh
 </programlisting>
 
index 446b12121d18e94f515abfe27fedcacaf8662ffb..4e72975c25f56183e6b2afa43954812bbfbe3310 100644 (file)
@@ -3,13 +3,13 @@
 
     <sect1 id="gbp.import.existing">
     <title>Importing already existing &debian; packages</title>
-    <para>Importing an already exsting debian package into a git repository is as easy as:
+    <para>Importing an already exsting &debian; package into a &git; repository is as easy as:
     <screen>
 &gbp-import-dsc; package_0.1-1.dsc
     </screen>
-    This will create a new git repository named after the imported package, put
+    This will create a new &git; repository named after the imported package, put
     the upstream sources onto the <option>upstream-branch</option> and the
-    debian patch on the <option>debian-branch</option>. In case of a debian
+    &debian; patch on the <option>debian-branch</option>. In case of a debian
     native package only the <option>debian-branch</option> is being used.
     You can specify alternative branch names via the
     <option>--upstream-branch</option> and <option>--debian-branch</option>
@@ -43,7 +43,7 @@ by version number.
 
     <sect1 id="gbp.import.new.upstream">
     <title>Importing a new upstream version</title>
-    <para>Change into your git repository (which can be empty), make sure it
+    <para>Change into your &git; repository (which can be empty), make sure it
     has all local modifications committed and run either of:
     <screen>
 &gbp-import-orig; <filename>/path/to/package_0.2.orig.tar.gz</filename>
@@ -117,7 +117,7 @@ EOF
     <title>Upstream sources not on a branch</title>
     <para>
     If you don't have an upstream branch but started your repository with only
-    the upstream sources (not the debian patch) you can simply branch from that
+    the upstream sources (not the &debian; patch) you can simply branch from that
     point. So use &gitkcmd; or &gitcmd;-log to locate the commit-id of that commit
     and create the upstream branch from there, e.g.:
 <screen>
@@ -126,7 +126,7 @@ EOF
 </screen>
     The important thing here is that the <envar>COMMIT_ID</envar> specifies a
     point on the master branch that carried <emphasis>only</emphasis> the
-    upstream sources and not the debian modifications. The above example
+    upstream sources and not the &debian; modifications. The above example
     assumes that this was the first commit to that repository.
     </para>
     <warning><para>There's currently no <emphasis>easy</emphasis> way to create the
@@ -160,7 +160,7 @@ EOF
     </sect1>
 
     <sect1 id="gbp.import.fromscratch">
-    <title>Starting a Debian package from scratch</title>
+    <title>Starting a &debian; package from scratch</title>
     <para>
     So far we assumed you already have a &debian; package to start with but
     what if you want to start a new package? First create an empty repository:
@@ -171,7 +171,7 @@ EOF
 <command>git init</command>
     </screen>
     <para>Then you import the upstream sources, branch off the
-    <option>upstream-branch</option> branch and add the debian files (e.g. via dh_make):
+    <option>upstream-branch</option> branch and add the &debian; files (e.g. via dh_make):
     <screen>
 &gbp-import-orig; <option>-u</option> <replaceable>0.1</replaceable> <filename>../package-0.1.tar.gz</filename>
 <command>dh_make</command>
@@ -181,7 +181,7 @@ EOF
     </sect1>
 
     <sect1 id="gbp.import.upstream-git">
-    <title>When upstream uses GIT</title>
+    <title>When upstream uses Git</title>
     <para>
       If upstream already uses git for packaging there are several ways to handle packaging. Two of them will
       be described in a bit detail here:
@@ -213,7 +213,7 @@ upstream-tag = v%(version)s
        </para>
        <para>If you're using &pristine-tar; you can make &gbp-buildpackage commit the generated tarball back to the
          pristine-tar branch by using the <option>--git-pristine-tar-commit</option> option. This will make sure
-         others building your package can regenerate the tarball you generated for building the Debian pacakge.
+         others building your package can regenerate the tarball you generated for building the &debian; package.
        </para>
 
        <sect3>
@@ -223,7 +223,7 @@ upstream-tag = v%(version)s
          to &gbp.conf; to save lots of typing.
        </para>
 
-       <para>First we clone the upstream repository. To avoid any dis ambiguities between the Debian packaging repository
+       <para>First we clone the upstream repository. To avoid any dis ambiguities between the &debian; packaging repository
          and the upstream repository we name the upstream repository <replaceable>ustream</replaceable> instead of the
          default <replaceable>origin</replaceable>.
          <screen>
@@ -231,9 +231,9 @@ upstream-tag = v%(version)s
            cd libgbp
            git checkout -b debian/sid v1.0
          </screen>
-         The above makes sure we have <replaceable>debian/sid</replaceable> for the Debian packaging. We didn't create
+         The above makes sure we have <replaceable>debian/sid</replaceable> for the &debian; packaging. We didn't create
          any <replaceable>upstream/*</replaceable> branches, they're not needed for the packaging and only need to be
-         kept up to date. After adding the Debian packaging we build the package. This assumes you're using &pristine-tar;
+         kept up to date. After adding the &debian; packaging we build the package. This assumes you're using &pristine-tar;
          and upstream uses a version number format as described above:
          <screen>
            gbp buildpackage --git-pristine-tar --git-pristine-tar-commit --git-upstream-tag='v%(version)s' --git-debian-branch=debian/sid
@@ -262,7 +262,7 @@ upstream-tag = v%(version)s
 
       <sect2 id="gbp.import.upstream.git.tarball">
        <title>Upstream tarballs</title>
-       <para>If you want to track upstream's git but continue to import the upstream tarballs,
+       <para>If you want to track upstream's &git; but continue to import the upstream tarballs,
          e.g. to make sure the tarball uploaded
          to &debian; has the same checksum as upstream's you can use the <option>--upstream-vcs-tag</option> option
          when importing new tarballs with &gbp-import-orig;. Assuming you have the upstream source in your
@@ -279,7 +279,7 @@ upstream-tag = v%(version)s
     <sect1 id="gbp.branch.naming">
       <title>Branch layout</title>
       <para>
-       By default &gbp; uses one branch to keep the Debian packaging called <emphasis>master</emphasis>
+       By default &gbp; uses one branch to keep the &debian; packaging called <emphasis>master</emphasis>
        and a branch to keep the upstream packaging called <emphasis>upstream</emphasis>.
       </para>
       <para>
@@ -294,7 +294,7 @@ upstream-tag = v%(version)s
          </term>
          <listitem>
            <para>
-             the Debian packaging for a release <emphasis>jessie</emphasis>,
+             the &debian; packaging for a release <emphasis>jessie</emphasis>,
              <emphasis>wheezy</emphasis>, <emphasis>sid</emphasis> or <emphasis>experimental</emphasis>.
            </para>
          </listitem>
index c29d7138f5184b327ebc63184acbd4d40a7b86d3..990ca95e679f7869644b7952fca845013f039c5b 100644 (file)
@@ -28,9 +28,9 @@
 
 <sect1 id="gbp.repository">
        <title>Repository Layout and Terminology</title>
-       <para>It is recommended to have the Debian packaging on a seprate
+       <para>It is recommended to have the &debian; packaging on a seprate
        branch than the upstream source <footnote><para>this, of course, has
-       no meaning for Debian native packages</para></footnote>.
+       no meaning for &debian; native packages</para></footnote>.
        This is necessary to be able to import
        and merge in new upstream versions via &gbp-import-orig;.
        To distinguish these two branches the following terminology
@@ -62,7 +62,7 @@
        <option>debian-branch</option>. If the <option>debian-branch</option> is called
        <emphasis>master</emphasis> the corresponding patch-queue branch is
        called <emphasis>patch-queue/master</emphasis>. The patch-queue branch is 
-       the debian branch plus the contents of
+       the &debian; branch plus the contents of
        <emphasis>debian/patches</emphasis> applied. These branches are managed
        with &gbp-pq;.
        </para></listitem>
        A typical, simple workflow consists of the following steps:
     </para>
     <orderedlist>
-       <listitem><para>Import a new Debian package via &gbp-import-dsc;. This
+       <listitem><para>Import a new &debian; package via &gbp-import-dsc;. This
        imports the &debian; Package on the <option>debian-branch</option>
        and the upstream sources on the <option>upstream-branch</option>.</para></listitem>
        <listitem><para>Develop, test, commit changes. During this time you can
        always build the package with &gbp-buildpackage;. In case you have
        uncommitted changes in your source tree you can use the
        <option>--git-ignore-new</option> option.</para></listitem>
-       <listitem><para>Optionally you can create the Debian changelog entries
+       <listitem><para>Optionally you can create the &debian; changelog entries
        using &gbp-dch; and create snapshot releases for testing using its
        <option>--snapshot</option> option.</para></listitem>
        <listitem><para>Once satisfied you can build the final package with
index 6f00995a0648853201fb891aa92bcfdb1bce37d6..abc08fd9e6e892e27647712e7fc049930bc65a2c 100644 (file)
@@ -1,6 +1,6 @@
 <chapter id="gbp.releases">
     <title>Releases and Snapshots</title>
-    <para>When branching and merging frequently, the different Debian changelog
+    <para>When branching and merging frequently, the different &debian; changelog
     entries on the different branches tend to get into the way of the automatic
     merge and the the merge fails - leaving the (pathological) merge to the
     committer. In order to avoid this &gbp-dch; offers a way for creating
@@ -137,7 +137,7 @@ description is the default.
 Usually changelog entries should correspond to a single &git; commit. In this case it's
 convenient to include the commit id in the changelog entry. 
 This has the advantage that it's easy for people to identify changes without
-having to write very extensive changelog messages - the link back to Git can be
+having to write very extensive changelog messages - the link back to &git; can be
 automated via the <option>Vcs-Browser</option> and <option>Vcs-Git</option>
 fields in <filename>debian/control</filename>. See <ulink url="https://honk.sigxcpu.org/cl2vcs">
 Cl2vcs</ulink> for how this looks.
index 9c8aa648bc6f426b03dc415bf053251c5fcf8257..7776330fc598546abb40698d746759b2fc436c16 100644 (file)
@@ -115,7 +115,7 @@ builder = /usr/bin/git-pbuilder
     <sect1 id="gbp.special.hacking">
     <title>Working on random packages</title>
     <para>
-    Whenever you need to work on an arbitrary Debian package you can check it
+    Whenever you need to work on an arbitrary &debian; package you can check it
     right into &git; with one command:
 <programlisting>
 git-import-dsc --download <filename>package</filename>
@@ -126,7 +126,7 @@ git-branch debian
     <para>
     This uses <command>apt-get</command> to download the source package,
     puts the orig tarball on the <option>upstream-branch</option> and the
-    Debian changes on the <option>debian-branch</option> (by default
+    &debian; changes on the <option>debian-branch</option> (by default
     <emphasis>master</emphasis>). The second command
     creates a branch called <emphasis>debian</emphasis>. Now you can easily
     modify the package, revert changes you made, create other branches for
@@ -137,7 +137,7 @@ git-diff debian --
 </programlisting>
     <para>
 
-    to get a nice patch that can be submitted to the Debian BTS. You can also
+    to get a nice patch that can be submitted to the &debian; BTS. You can also
     fetch the source package from an URL:
 
 <programlisting>
index 0e5561efba541d1730da076b7545c2d757f8e637..8048b1e77e3fbc86080b6928fc02bf477f15d364 100644 (file)
@@ -14,7 +14,7 @@
   <refnamediv>
     <refname>git-buildpackage</refname>
     <refname>gbp-buildpackage</refname>
-    <refpurpose>Build Debian packages from a Git repository</refpurpose>
+    <refpurpose>Build &debian; packages from a &git; repository</refpurpose>
   </refnamediv>
   <refsynopsisdiv>
     <cmdsynopsis>
@@ -66,7 +66,7 @@
   <refsect1>
     <title>DESCRIPTION</title>
     <para>
-    &gbp-buildpackage; is used to build Debian source and .deb packages from
+    &gbp-buildpackage; is used to build &debian; source and .deb packages from
     a &git; repository.
     </para>
     <para>
         </term>
         <listitem>
           <para>
-          use this tag format when tagging Debian versions, default is
+          use this tag format when tagging &debian; versions, default is
           <replaceable>debian/%(version)s</replaceable>
           </para>
         </listitem>
         <term><option>--git-debian-tag-msg=</option><replaceable>tag-msg-format</replaceable>
         </term>
         <listitem>
-          <para>use this tag message format when signing Debian versions,
+          <para>use this tag message format when signing &debian; versions,
          default is <replaceable>%(pkg)s Debian release %(version)s</replaceable></para>
         </listitem>
       </varlistentry>
   <refsect1>
     <title>EXAMPLES</title>
     <para>
-    Build a Debian package using &git-pbuilder; which in turn invokes
+    Build a &debian; package using &git-pbuilder; which in turn invokes
     &cowbuildercmd;.  Instruct cowbuilder to build within a Wheezy chroot for
     i386.
     </para>
index e8f6a092b210f1ffaddc10e934e8436d017dabde..ea22d83dfd7a7480870ae0198fc80e373a5a795a 100644 (file)
@@ -93,7 +93,7 @@
         <term><option>--debian-branch</option>=<replaceable>branch_name</replaceable>
         </term>
         <listitem>
-         <para>The branch in the Git repository the Debian package is being
+         <para>The branch in the &git; repository the &debian; package is being
          developed on, default is <replaceable>master</replaceable>.</para>
         </listitem>
       </varlistentry>
index 8ffdc4f61d92dbb8e01b03f18edd1af1e9eb1583..22ab5688fcce92dee8ad67fa2114dbc4083ebc00 100644 (file)
@@ -15,7 +15,7 @@
   <refnamediv>
     <refname>git-dch;</refname>
     <refname>gbp-dch;</refname>
-    <refpurpose>Generate the Debian changelog from git commit messages</refpurpose>
+    <refpurpose>Generate the &debian; changelog from git commit messages</refpurpose>
   </refnamediv>
   <refsynopsisdiv>
     <cmdsynopsis>
@@ -62,7 +62,7 @@
   <refsect1>
     <title>DESCRIPTION</title>
     <para>
-    &gbp-dch; reads git commit messages and generates the Debian changelog from
+    &gbp-dch; reads git commit messages and generates the &debian; changelog from
     it. If no arguments are given &gbp-dch; starts from the last tagged Debian
     package version up to the current tip of the current branch. If the
     distribution of the topmost section in
index e635a3d96311cdfd0e3a90740c2065af481b177c..965cc871e2d5d30e0ebeb0b6c25e15156c6eb768 100644 (file)
@@ -15,7 +15,7 @@
   <refnamediv>
     <refname>git-import-dsc</refname>
     <refname>gbp-import-dsc</refname>
-    <refpurpose>Import Debian packages into a Git repository</refpurpose>
+    <refpurpose>Import &debian; packages into a &git; repository</refpurpose>
   </refnamediv>
   <refsynopsisdiv>
     <cmdsynopsis>
@@ -51,9 +51,9 @@
   <refsect1>
     <title>DESCRIPTION</title>
     <para>
-    &gbp-import-dsc; imports a Debian source package into a &git; repository,
+    &gbp-import-dsc; imports a &debian; source package into a &git; repository,
     notes the package version in the commit logs, and commits the change. All
-    information, including package name, version, Debian  diffs, and upstream
+    information, including package name, version, &debian;  diffs, and upstream
     source is automatically detected from the source package.
     </para>
   </refsect1>
         </term>
         <listitem>
           <para>
-          use this tag format when tagging Debian versions,
+          use this tag format when tagging &debian; versions,
           default is <replaceable>debian/%(version)s</replaceable>
           </para>
         </listitem>
         </term>
         <listitem>
           <para>
-          Don't create Debian tag after importing the Debian patch. This can be
+          Don't create &debian; tag after importing the &debian; patch. This can be
           useful if you already created a package but want to further work on
           it after importing it into git.
           </para>
         </term>
         <listitem>
           <para>
-          When importing the Debian patch, use the author identity as
+          When importing the &debian; patch, use the author identity as
           committer identity.
           </para>
         </listitem>
         </term>
         <listitem>
           <para>
-          When importing the Debian patch, use the author date as
+          When importing the &debian; patch, use the author date as
           committer date.
           <warning>
             <para>
-            Git will subtly misbehave if the committer date of a commit is not
+            &git; will subtly misbehave if the committer date of a commit is not
             later than or equal to all its parents.
             </para>
           </warning>
index d6fb2693c3c1d90776a16a35a8e598a1e7d774b6..6b0993f894d98c783fd89ec462b8dbd2d9349257 100644 (file)
@@ -80,7 +80,7 @@
         <term><option>--[no-]merge</option></term>
         <listitem>
           <para>
-          Merge the upstream branch to the debian branch after import
+          Merge the upstream branch to the &debian; branch after import
           </para>
         </listitem>
       </varlistentry>
@@ -89,7 +89,7 @@
         </term>
         <listitem>
           <para>
-          The branch in the Git repository the upstream sources are put
+          The branch in the &git; repository the upstream sources are put
           onto. Default is <replaceable>upstream</replaceable>.
           </para>
         </listitem>
@@ -99,7 +99,7 @@
         </term>
         <listitem>
           <para>
-          The branch in the Git repository the Debian package is being
+          The branch in the &git; repository the &debian; package is being
           developed on, default is <replaceable>master</replaceable>. After
           importing the new sources on the upstream branch, &gbp-import-orig;
           will try to merge the new version onto this branch.
         <listitem>
           <para>
           Whether to create and keep a symlink from the upstream tarball
-          to a Debian policy conformant upstream tarball name located in
+          to a &debian; policy conformant upstream tarball name located in
           <filename class="directory">../</filename>.
           </para>
           <para>
index f1afb04d47d93ac8b06c26dd7fadb9a5b57bda89..ae1c09f3674b122ffcf0f9f44581757adcf68689 100644 (file)
   <refsect1>
     <title>DESCRIPTION</title>
     <para>
-    &gbp-pq; helps one to manage quilt patches in Debian packages that are
+    &gbp-pq; helps one to manage quilt patches in &debian; packages that are
     maintained with &gbp;. This is especially useful with packages using the
     3.0 (quilt) source format. With &gbp-pq; you can maintain the quilt patches
     that should be applied to a package on a separate branch called patch-queue
-    branch. So if your Debian package lives on
+    branch. So if your &debian; package lives on
     <replaceable>master</replaceable> the associated patch-queue branch will be
     called <replaceable>patch-queue/master</replaceable>.
     </para>
           <command>git-am</command>. Use <option>--topic</option> if you want
           the patch to appear in a separate subdir when exporting the patch queue
           using <option>export</option>. This can be used to separate upstream
-          pathes from debian specific patches.
+          pathes from &debian; specific patches.
           </para>
         </listitem>
       </varlistentry>
index c0fdddc78d6038f4201efe6d7510b282f8fcd64a..4ba7569f3e5e8d847a0df98fe4c92470e0d2e3f5 100644 (file)
@@ -14,7 +14,7 @@
   </refmeta>
   <refnamediv>
     <refname>&gbp;</refname>
-    <refpurpose>Maintain Debian packages in Git</refpurpose>
+    <refpurpose>Maintain &debian; packages in &git;</refpurpose>
   </refnamediv>
   <refsynopsisdiv>
     <cmdsynopsis>
@@ -30,7 +30,7 @@
   <refsect1>
     <title>DESCRIPTION</title>
     <para>
-    &gbp; is used to maintain Debian source packages in the &git; version control system.
+    &gbp; is used to maintain &debian; source packages in the &git; version control system.
     </para>
   </refsect1>
   <refsect1>
@@ -88,7 +88,7 @@
         <term>import-dsc
         </term>
         <listitem>
-          <para>Import a Debian source package into a &git; repository</para>
+          <para>Import a &debian; source package into a &git; repository</para>
         </listitem>
       </varlistentry>
     </variablelist>
@@ -97,7 +97,7 @@
         <term>import-dscs
         </term>
         <listitem>
-          <para>Import several Debian source packages into a &git; repository, sorted
+          <para>Import several &debian; source packages into a &git; repository, sorted
          by version number</para>
         </listitem>
       </varlistentry>
index c74036134a5ecaa3aafda0bcca2223b386542095..847df555544d2ea22d5b44c26dc93f8f4593eba6 100644 (file)
@@ -58,7 +58,7 @@ class DebianSource(object):
 
     def is_native(self):
         """
-        Whether this is a native debian package
+        Whether this is a native Debian package
         """
         try:
             ff = self._vfs.open('debian/source/format')
index e96e8e77ab21429550ab3fa260d15665651d8349..e4ec26a8ae974be54a90909d7e2e6fba3293c76d 100755 (executable)
@@ -1,6 +1,6 @@
 # vim: set fileencoding=utf-8 :
 #
-# (C) 2006-2014 Guido Günther <agx@sigxcpu.org>
+# (C) 2006-2015 Guido Günther <agx@sigxcpu.org>
 #    This program is free software; you can redistribute it and/or modify
 #    it under the terms of the GNU General Public License as published by
 #    the Free Software Foundation; either version 2 of the License, or
@@ -15,7 +15,7 @@
 #    along with this program; if not, write to the Free Software
 #    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 #
-"""Build a debian package out of a GIT repository"""
+"""Build a Debian package out of a Git repository"""
 
 import ConfigParser
 import errno
index 8078854be02e0da2f04e092f181d437834b277de..4593bc6d19ed119604726aede30e950c4ace1716 100755 (executable)
@@ -1,6 +1,6 @@
 # vim: set fileencoding=utf-8 :
 #
-# (C) 2009,2010 Guido Guenther <agx@sigxcpu.org>
+# (C) 2009, 2010, 2015 Guido Guenther <agx@sigxcpu.org>
 #    This program is free software; you can redistribute it and/or modify
 #    it under the terms of the GNU General Public License as published by
 #    the Free Software Foundation; either version 2 of the License, or
@@ -17,7 +17,7 @@
 #
 # inspired by dom-git-checkout
 #
-"""Clone a GIT repository and set it up for gbp"""
+"""Clone a Git repository and set it up for gbp"""
 
 import ConfigParser
 import sys
index b8923cd1570e165116108f5488df71daa0f46bc0..b4d43c95d0f4531d7c53feed56de24a40f3fbbfd 100644 (file)
@@ -1,6 +1,6 @@
 # vim: set fileencoding=utf-8 :
 #
-# (C) 2010,2012 Guido Günther <agx@sigxcpu.org>
+# (C) 2010, 2012, 2015 Guido Günther <agx@sigxcpu.org>
 #    This program is free software; you can redistribute it and/or modify
 #    it under the terms of the GNU General Public License as published by
 #    the Free Software Foundation; either version 2 of the License, or
@@ -16,7 +16,7 @@
 #    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 #
 # Based on the aa-create-git-repo and dom-new-git-repo shell scripts
-"""Create a remote GIT repository based on the current one"""
+"""Create a remote Git repository based on the current one"""
 
 import ConfigParser
 import sys
index ce19c9a6918f2625999108c3b2d3813c95cb8cc6..e725bb15f201c8aaa6814c210917e41369ac5e19 100644 (file)
@@ -1,6 +1,6 @@
 # vim: set fileencoding=utf-8 :
 #
-# (C) 2007, 2008, 2009, 2010, 2013 Guido Guenther <agx@sigxcpu.org>
+# (C) 2007, 2008, 2009, 2010, 2013, 2015 Guido Guenther <agx@sigxcpu.org>
 #    This program is free software; you can redistribute it and/or modify
 #    it under the terms of the GNU General Public License as published by
 #    the Free Software Foundation; either version 2 of the License, or
@@ -15,7 +15,7 @@
 #    along with this program; if not, write to the Free Software
 #    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 #
-"""Generate Debian changelog entries from GIT commit messages"""
+"""Generate Debian changelog entries from Git commit messages"""
 
 import ConfigParser
 import os.path
index c0bf6504c987c8da5310b752d7a8404aa4f38770..f4dac9c012fc24afa403673d3bc122a2ffd4dea4 100644 (file)
@@ -1,6 +1,6 @@
 # vim: set fileencoding=utf-8 :
 #
-# (C) 2006,2007,2011,2012 Guido Guenther <agx@sigxcpu.org>
+# (C) 2006, 2007, 2011, 2012, 2015 Guido Guenther <agx@sigxcpu.org>
 #    This program is free software; you can redistribute it and/or modify
 #    it under the terms of the GNU General Public License as published by
 #    the Free Software Foundation; either version 2 of the License, or
@@ -14,7 +14,7 @@
 #    You should have received a copy of the GNU General Public License
 #    along with this program; if not, write to the Free Software
 #    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
-"""Import a Debian source package into a GIT repository"""
+"""Import a Debian source package into a Git repository"""
 
 import ConfigParser
 import sys
index 5409ca1179c75e6dbc42c27f2ce0dfd94ba1db4b..9219ba07d55a90296759c5eb72db8aa8d87fd8c8 100644 (file)
@@ -14,7 +14,7 @@
 #    You should have received a copy of the GNU General Public License
 #    along with this program; if not, write to the Free Software
 #    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
-"""Import multiple dsc files into GIT in one go"""
+"""Import multiple dsc files into Git in one go"""
 
 import glob
 import os
index 7184116112a25a39415eb9aad18bf17cebb23454..f73dea1726621a735ba8e3cc887e2f72f6fb48e5 100644 (file)
@@ -1,6 +1,6 @@
 # vim: set fileencoding=utf-8 :
 #
-# (C) 2006, 2007, 2009, 2011 Guido Guenther <agx@sigxcpu.org>
+# (C) 2006, 2007, 2009, 2011, 2015 Guido Guenther <agx@sigxcpu.org>
 #    This program is free software; you can redistribute it and/or modify
 #    it under the terms of the GNU General Public License as published by
 #    the Free Software Foundation; either version 2 of the License, or
@@ -15,7 +15,7 @@
 #    along with this program; if not, write to the Free Software
 #    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 #
-"""Import a new upstream version into a GIT repository"""
+"""Import a new upstream version into a Git repository"""
 
 import ConfigParser
 import os
index 958f5ff7cd152ffac694b554f2e135dc5c3b2fb9..d2392c0279b827967e0ed685afda0f696fdf850e 100755 (executable)
@@ -15,7 +15,7 @@
 #    You should have received a copy of the GNU General Public License
 #    along with this program; if not, write to the Free Software
 #    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
-"""Import an RPM source package into a GIT repository"""
+"""Import an RPM source package into a Git repository"""
 
 import ConfigParser
 import sys