All of lore.kernel.org
 help / color / mirror / Atom feed
From: Stefan Weil <sw@weilnetz.de>
To: Eric Blake <eblake@redhat.com>, qemu-devel@nongnu.org
Cc: qemu-trivial@nongnu.org
Subject: Re: [Qemu-trivial] [Qemu-devel] [for-2.3 PATCH v2] gitignore: Ignore more .pod files.
Date: Fri, 20 Mar 2015 18:00:25 +0100	[thread overview]
Message-ID: <550C5229.9030108@weilnetz.de> (raw)
In-Reply-To: <1426869044-21338-1-git-send-email-eblake@redhat.com>

Am 20.03.2015 um 17:30 schrieb Eric Blake:
> kvm_stat.{1,pod} started showing up as untracked files in my
> directory, and I nearly accidentally merged them into a commit
> with my usual habit of 'git add .'.  Rather than spelling out
> each such file, just ignore the entire pattern.
>
> Signed-off-by: Eric Blake <eblake@redhat.com>
> CC: qemu-trivial@nongnu.org
> ---
>
> v2: fix man page pattern
>
>   .gitignore | 10 ++--------
>   1 file changed, 2 insertions(+), 8 deletions(-)
>
> diff --git a/.gitignore b/.gitignore
> index e32a584..aed0e1f 100644
> --- a/.gitignore
> +++ b/.gitignore
> @@ -37,14 +37,8 @@
>   /qemu-tech.html
>   /qemu-doc.info
>   /qemu-tech.info
> -/qemu.1
> -/qemu.pod
> -/qemu-img.1
> -/qemu-img.pod
>   /qemu-img
>   /qemu-nbd
> -/qemu-nbd.8
> -/qemu-nbd.pod
>   /qemu-options.def
>   /qemu-options.texi
>   /qemu-img-cmds.texi
> @@ -56,8 +50,7 @@
>   /qmp-commands.txt
>   /vscclient
>   /fsdev/virtfs-proxy-helper
> -/fsdev/virtfs-proxy-helper.1
> -/fsdev/virtfs-proxy-helper.pod
> +*.[1-9]
>   *.a
>   *.aux
>   *.cp
> @@ -70,6 +63,7 @@
>   *.ky
>   *.log
>   *.pdf
> +*.pod
>   *.cps
>   *.fns
>   *.kys

Reviewed-by: Stefan Weil <sw@weilnetz.de>

What about only supporting out-of-tree builds for future versions of QEMU?
.gitignore could be reduced to a few lines then.



WARNING: multiple messages have this Message-ID (diff)
From: Stefan Weil <sw@weilnetz.de>
To: Eric Blake <eblake@redhat.com>, qemu-devel@nongnu.org
Cc: qemu-trivial@nongnu.org
Subject: Re: [Qemu-devel] [for-2.3 PATCH v2] gitignore: Ignore more .pod files.
Date: Fri, 20 Mar 2015 18:00:25 +0100	[thread overview]
Message-ID: <550C5229.9030108@weilnetz.de> (raw)
In-Reply-To: <1426869044-21338-1-git-send-email-eblake@redhat.com>

Am 20.03.2015 um 17:30 schrieb Eric Blake:
> kvm_stat.{1,pod} started showing up as untracked files in my
> directory, and I nearly accidentally merged them into a commit
> with my usual habit of 'git add .'.  Rather than spelling out
> each such file, just ignore the entire pattern.
>
> Signed-off-by: Eric Blake <eblake@redhat.com>
> CC: qemu-trivial@nongnu.org
> ---
>
> v2: fix man page pattern
>
>   .gitignore | 10 ++--------
>   1 file changed, 2 insertions(+), 8 deletions(-)
>
> diff --git a/.gitignore b/.gitignore
> index e32a584..aed0e1f 100644
> --- a/.gitignore
> +++ b/.gitignore
> @@ -37,14 +37,8 @@
>   /qemu-tech.html
>   /qemu-doc.info
>   /qemu-tech.info
> -/qemu.1
> -/qemu.pod
> -/qemu-img.1
> -/qemu-img.pod
>   /qemu-img
>   /qemu-nbd
> -/qemu-nbd.8
> -/qemu-nbd.pod
>   /qemu-options.def
>   /qemu-options.texi
>   /qemu-img-cmds.texi
> @@ -56,8 +50,7 @@
>   /qmp-commands.txt
>   /vscclient
>   /fsdev/virtfs-proxy-helper
> -/fsdev/virtfs-proxy-helper.1
> -/fsdev/virtfs-proxy-helper.pod
> +*.[1-9]
>   *.a
>   *.aux
>   *.cp
> @@ -70,6 +63,7 @@
>   *.ky
>   *.log
>   *.pdf
> +*.pod
>   *.cps
>   *.fns
>   *.kys

Reviewed-by: Stefan Weil <sw@weilnetz.de>

What about only supporting out-of-tree builds for future versions of QEMU?
.gitignore could be reduced to a few lines then.

  reply	other threads:[~2015-03-20 17:00 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-03-20 16:30 [Qemu-trivial] [for-2.3 PATCH v2] gitignore: Ignore more .pod files Eric Blake
2015-03-20 16:30 ` [Qemu-devel] " Eric Blake
2015-03-20 17:00 ` Stefan Weil [this message]
2015-03-20 17:00   ` Stefan Weil
2015-03-23  7:45   ` [Qemu-trivial] " Markus Armbruster
2015-03-23  7:45     ` Markus Armbruster
2015-03-25 15:21 ` [Qemu-trivial] " Michael Tokarev
2015-03-25 15:21   ` [Qemu-devel] " Michael Tokarev

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=550C5229.9030108@weilnetz.de \
    --to=sw@weilnetz.de \
    --cc=eblake@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-trivial@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.