All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] .gitignore: ignore *.mbx
@ 2023-01-30  2:19 Masahiro Yamada
  2023-01-30  4:49 ` Nicolas Schier
  2023-01-30 17:27 ` Nick Desaulniers
  0 siblings, 2 replies; 4+ messages in thread
From: Masahiro Yamada @ 2023-01-30  2:19 UTC (permalink / raw)
  To: linux-kernel, linux-kbuild
  Cc: Nathan Chancellor, Nick Desaulniers, Nicolas Schier,
	Konstantin Ryabitsev, Mark Brown, Geert Uytterhoeven,
	Miguel Ojeda, Masahiro Yamada

The 'b4' command creates a *.mbx file. Ignore it.

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
---

 .gitignore | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.gitignore b/.gitignore
index 22984d22d29e..4dc02ef62202 100644
--- a/.gitignore
+++ b/.gitignore
@@ -33,6 +33,7 @@
 *.lz4
 *.lzma
 *.lzo
+*.mbx
 *.mod
 *.mod.c
 *.o
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] .gitignore: ignore *.mbx
  2023-01-30  2:19 [PATCH] .gitignore: ignore *.mbx Masahiro Yamada
@ 2023-01-30  4:49 ` Nicolas Schier
  2023-01-30  8:28   ` Masahiro Yamada
  2023-01-30 17:27 ` Nick Desaulniers
  1 sibling, 1 reply; 4+ messages in thread
From: Nicolas Schier @ 2023-01-30  4:49 UTC (permalink / raw)
  To: Masahiro Yamada
  Cc: linux-kernel, linux-kbuild, Nathan Chancellor, Nick Desaulniers,
	Konstantin Ryabitsev, Mark Brown, Geert Uytterhoeven,
	Miguel Ojeda

[-- Attachment #1: Type: text/plain, Size: 785 bytes --]

On Mon 30 Jan 2023 11:19:02 GMT, Masahiro Yamada wrote:
> The 'b4' command creates a *.mbx file. Ignore it.

b4 also creates *.cover file.  Can you add that, too?

Reviewed-by: Nicolas Schier <nicolas@fjasle.eu>

Thanks,
Nicolas

> 
> Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
> ---
> 
>  .gitignore | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/.gitignore b/.gitignore
> index 22984d22d29e..4dc02ef62202 100644
> --- a/.gitignore
> +++ b/.gitignore
> @@ -33,6 +33,7 @@
>  *.lz4
>  *.lzma
>  *.lzo
> +*.mbx
>  *.mod
>  *.mod.c
>  *.o
> -- 
> 2.34.1

-- 
epost|xmpp: nicolas@fjasle.eu          irc://oftc.net/nsc
↳ gpg: 18ed 52db e34f 860e e9fb  c82b 7d97 0932 55a0 ce7f
     -- frykten for herren er opphav til kunnskap --

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] .gitignore: ignore *.mbx
  2023-01-30  4:49 ` Nicolas Schier
@ 2023-01-30  8:28   ` Masahiro Yamada
  0 siblings, 0 replies; 4+ messages in thread
From: Masahiro Yamada @ 2023-01-30  8:28 UTC (permalink / raw)
  To: Nicolas Schier
  Cc: linux-kernel, linux-kbuild, Nathan Chancellor, Nick Desaulniers,
	Konstantin Ryabitsev, Mark Brown, Geert Uytterhoeven,
	Miguel Ojeda

On Mon, Jan 30, 2023 at 1:50 PM Nicolas Schier <nicolas@fjasle.eu> wrote:
>
> On Mon 30 Jan 2023 11:19:02 GMT, Masahiro Yamada wrote:
> > The 'b4' command creates a *.mbx file. Ignore it.
>
> b4 also creates *.cover file.  Can you add that, too?

Sure, will do.

Thanks.


>
> Reviewed-by: Nicolas Schier <nicolas@fjasle.eu>
>
> Thanks,
> Nicolas
>
> >
> > Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
> > ---
> >
> >  .gitignore | 1 +
> >  1 file changed, 1 insertion(+)
> >
> > diff --git a/.gitignore b/.gitignore
> > index 22984d22d29e..4dc02ef62202 100644
> > --- a/.gitignore
> > +++ b/.gitignore
> > @@ -33,6 +33,7 @@
> >  *.lz4
> >  *.lzma
> >  *.lzo
> > +*.mbx
> >  *.mod
> >  *.mod.c
> >  *.o
> > --
> > 2.34.1
>
> --
> epost|xmpp: nicolas@fjasle.eu          irc://oftc.net/nsc
> ↳ gpg: 18ed 52db e34f 860e e9fb  c82b 7d97 0932 55a0 ce7f
>      -- frykten for herren er opphav til kunnskap --



-- 
Best Regards
Masahiro Yamada

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] .gitignore: ignore *.mbx
  2023-01-30  2:19 [PATCH] .gitignore: ignore *.mbx Masahiro Yamada
  2023-01-30  4:49 ` Nicolas Schier
@ 2023-01-30 17:27 ` Nick Desaulniers
  1 sibling, 0 replies; 4+ messages in thread
From: Nick Desaulniers @ 2023-01-30 17:27 UTC (permalink / raw)
  To: Masahiro Yamada
  Cc: linux-kernel, linux-kbuild, Nathan Chancellor, Nicolas Schier,
	Konstantin Ryabitsev, Mark Brown, Geert Uytterhoeven,
	Miguel Ojeda

On Sun, Jan 29, 2023 at 6:19 PM Masahiro Yamada <masahiroy@kernel.org> wrote:
>
> The 'b4' command creates a *.mbx file. Ignore it.
>
> Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>

Thanks for the patch! (I commonly pipe mbox files directly into `git`
to avoid this, but I do use b4 a lot!)
Reviewed-by: Nick Desaulniers <ndesaulniers@google.com>

> ---
>
>  .gitignore | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/.gitignore b/.gitignore
> index 22984d22d29e..4dc02ef62202 100644
> --- a/.gitignore
> +++ b/.gitignore
> @@ -33,6 +33,7 @@
>  *.lz4
>  *.lzma
>  *.lzo
> +*.mbx
>  *.mod
>  *.mod.c
>  *.o
> --
> 2.34.1
>


-- 
Thanks,
~Nick Desaulniers

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-01-30 17:28 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-30  2:19 [PATCH] .gitignore: ignore *.mbx Masahiro Yamada
2023-01-30  4:49 ` Nicolas Schier
2023-01-30  8:28   ` Masahiro Yamada
2023-01-30 17:27 ` Nick Desaulniers

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.