Tarantool development patches archive
 help / color / mirror / Atom feed
* [tarantool-patches] [PATCH] gitignore: Add paths for quilt
@ 2019-03-02 11:27 Cyrill Gorcunov
  2019-03-02 11:46 ` Vladimir Davydov
  2019-03-05  7:50 ` [tarantool-patches] Re: [PATCH] " Konstantin Osipov
  0 siblings, 2 replies; 6+ messages in thread
From: Cyrill Gorcunov @ 2019-03-02 11:27 UTC (permalink / raw)
  To: tarantool

Suitable for those who is using quilt for development.
---
 .gitignore |    2 ++
 1 file changed, 2 insertions(+)

Index: tarantool.git/.gitignore
===================================================================
--- tarantool.git.orig/.gitignore
+++ tarantool.git/.gitignore
@@ -6,10 +6,12 @@ _CPack_Packages
 *.gcno
 *.gcda
 *.gcov
+patches/
 coverage/
 coverage.info
 *.o
 *.reject
+*.rej
 *.so
 *~
 *.swp*

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

* Re: [tarantool-patches] [PATCH] gitignore: Add paths for quilt
  2019-03-02 11:27 [tarantool-patches] [PATCH] gitignore: Add paths for quilt Cyrill Gorcunov
@ 2019-03-02 11:46 ` Vladimir Davydov
  2019-03-02 12:05   ` [PATCH v2] " Cyrill Gorcunov
  2019-03-05  7:50 ` [tarantool-patches] Re: [PATCH] " Konstantin Osipov
  1 sibling, 1 reply; 6+ messages in thread
From: Vladimir Davydov @ 2019-03-02 11:46 UTC (permalink / raw)
  To: Cyrill Gorcunov; +Cc: tarantool

On Sat, Mar 02, 2019 at 02:27:09PM +0300, Cyrill Gorcunov wrote:
> Suitable for those who is using quilt for development.
> ---
>  .gitignore |    2 ++
>  1 file changed, 2 insertions(+)
> 
> Index: tarantool.git/.gitignore
> ===================================================================
> --- tarantool.git.orig/.gitignore
> +++ tarantool.git/.gitignore
> @@ -6,10 +6,12 @@ _CPack_Packages
>  *.gcno
>  *.gcda
>  *.gcov
> +patches/
>  coverage/
>  coverage.info
>  *.o
>  *.reject
> +*.rej
>  *.so
>  *~
>  *.swp*

We should probably also add *.orig

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

* [PATCH v2] gitignore: Add paths for quilt
  2019-03-02 11:46 ` Vladimir Davydov
@ 2019-03-02 12:05   ` Cyrill Gorcunov
  2019-03-02 12:22     ` Vladimir Davydov
  0 siblings, 1 reply; 6+ messages in thread
From: Cyrill Gorcunov @ 2019-03-02 12:05 UTC (permalink / raw)
  To: Vladimir Davydov; +Cc: tarantool

Suitable for those who is using quilt for development.
---
Add .orig as well

 .gitignore |    3 +++
 1 file changed, 3 insertions(+)

Index: tarantool.git/.gitignore
===================================================================
--- tarantool.git.orig/.gitignore
+++ tarantool.git/.gitignore
@@ -6,10 +6,13 @@ _CPack_Packages
 *.gcno
 *.gcda
 *.gcov
+patches/
 coverage/
 coverage.info
 *.o
 *.reject
+*.orig
+*.rej
 *.so
 *~
 *.swp*

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

* Re: [PATCH v2] gitignore: Add paths for quilt
  2019-03-02 12:05   ` [PATCH v2] " Cyrill Gorcunov
@ 2019-03-02 12:22     ` Vladimir Davydov
  0 siblings, 0 replies; 6+ messages in thread
From: Vladimir Davydov @ 2019-03-02 12:22 UTC (permalink / raw)
  To: Cyrill Gorcunov; +Cc: tarantool

Pushed to 2.1. Thanks!

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

* [tarantool-patches] Re: [PATCH] gitignore: Add paths for quilt
  2019-03-02 11:27 [tarantool-patches] [PATCH] gitignore: Add paths for quilt Cyrill Gorcunov
  2019-03-02 11:46 ` Vladimir Davydov
@ 2019-03-05  7:50 ` Konstantin Osipov
  2019-03-05  7:59   ` Cyrill Gorcunov
  1 sibling, 1 reply; 6+ messages in thread
From: Konstantin Osipov @ 2019-03-05  7:50 UTC (permalink / raw)
  To: tarantool-patches

* Cyrill Gorcunov <gorcunov@gmail.com> [19/03/03 23:25]:
> Suitable for those who is using quilt for development.

This is OK to push obviously but man, last time I used quilt was 2003.

-- 
Konstantin Osipov, Moscow, Russia, +7 903 626 22 32
http://tarantool.io - www.twitter.com/kostja_osipov

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

* [tarantool-patches] Re: [PATCH] gitignore: Add paths for quilt
  2019-03-05  7:50 ` [tarantool-patches] Re: [PATCH] " Konstantin Osipov
@ 2019-03-05  7:59   ` Cyrill Gorcunov
  0 siblings, 0 replies; 6+ messages in thread
From: Cyrill Gorcunov @ 2019-03-05  7:59 UTC (permalink / raw)
  To: Konstantin Osipov; +Cc: tarantool-patches

On Tue, Mar 05, 2019 at 10:50:56AM +0300, Konstantin Osipov wrote:
> * Cyrill Gorcunov <gorcunov@gmail.com> [19/03/03 23:25]:
> > Suitable for those who is using quilt for development.
> 
> This is OK to push obviously but man, last time I used quilt was 2003.

Hehe :-) Imagine it is quite actively used in kernel camp :)

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

end of thread, other threads:[~2019-03-05  7:59 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-02 11:27 [tarantool-patches] [PATCH] gitignore: Add paths for quilt Cyrill Gorcunov
2019-03-02 11:46 ` Vladimir Davydov
2019-03-02 12:05   ` [PATCH v2] " Cyrill Gorcunov
2019-03-02 12:22     ` Vladimir Davydov
2019-03-05  7:50 ` [tarantool-patches] Re: [PATCH] " Konstantin Osipov
2019-03-05  7:59   ` Cyrill Gorcunov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox