Re: [PATCH] doc: Mention dim cherry-pick command in getting started page

2022-07-07 Thread Javier Martinez Canillas
On 7/7/22 23:08, Rodrigo Vivi wrote: > On Thu, Jul 07, 2022 at 10:07:12PM +0200, Javier Martinez Canillas wrote: [snip] >> I see the content of that page as a dim workflow summary and that's why I >> think that cherry-pick should be part of it (just like you have checkout, >

Re: [PATCH] doc: Mention dim cherry-pick command in getting started page

2022-07-07 Thread Javier Martinez Canillas
. But if the agreement is that this shouldn't be in that page, I can move it somewhere else. -- Best regards, Javier Martinez Canillas Linux Engineering Red Hat

[PATCH] doc: Mention dim cherry-pick command in getting started page

2022-07-07 Thread Javier Martinez Canillas
cherry-pick. That way people will be aware of it. This is useful to avoid cherry-picking commits but miss existing fixes for them, which would introduce unnecessary regressions in the target branch. Signed-off-by: Javier Martinez Canillas --- getting-started.rst | 11 +++ 1 file

[PATCH v2] dim: Check that patches have git-format-patch default prefixes

2022-01-15 Thread Javier Martinez Canillas
-by: Javier Martinez Canillas --- Changes in v2: - Use warn_or_fail instead of always making this an error (Daniel). dim | 17 + 1 file changed, 17 insertions(+) diff --git a/dim b/dim index fb0dce98fb5c..1193fe056bce 100755 --- a/dim +++ b/dim @@ -1113,6 +1113,18 @@ function

[PATCH] dim: Check that patches have git-format-patch default prefixes

2021-11-29 Thread Javier Martinez Canillas
. To avoid this, check that patches to apply are using git-format-patch's defaults prefixes to make sure that git-am defaults are safe to use too. Signed-off-by: Javier Martinez Canillas --- dim | 19 +++ 1 file changed, 19 insertions(+) diff --git a/dim b/dim index bbe9308ac695