How can I tell, from a script, if “git cherry-pick” fails?

3 messages, 2 authors, 2016-11-02 · open the first message on its own page

How can I tell, from a script, if “git cherry-pick” fails?

From: Kevin Layer <hidden>
Date: 2016-11-02 15:14:58

If the cherry-pick fails due to a merge conflict, it just returns an
exit status of 0.  I have a script that does a series of cherry-picks
and I need to know if they succeed.

I'm sure this has been covered before.

Using git version 1.8.3.1.

Thank you.

Kevin

Re: How can I tell, from a script, if “git cherry-pick” fails?

From: Kevin Layer <hidden>
Date: 2016-11-02 15:32:41

Nevermind.  It's working as it should.  The script that was doing the
cherry-pick was doing it in an if and I neglected to exit with a
non-zero status.  Sorry for the noise.

On Wed, Nov 2, 2016 at 8:14 AM, Kevin Layer [off-list ref] wrote:
If the cherry-pick fails due to a merge conflict, it just returns an
exit status of 0.  I have a script that does a series of cherry-picks
and I need to know if they succeed.

I'm sure this has been covered before.

Using git version 1.8.3.1.

Thank you.

Kevin

Re: How can I tell, from a script, if “git cherry-pick” fails?

From: Pranit Bauva <hidden>
Date: 2016-11-02 15:36:39

Hey Kevin,

On Wed, Nov 2, 2016 at 8:44 PM, Kevin Layer [off-list ref] wrote:
If the cherry-pick fails due to a merge conflict, it just returns an
exit status of 0.  I have a script that does a series of cherry-picks
and I need to know if they succeed.
Well, I haven't checked what it returns in git 2.10, but you can
always redirect the stdout and stderr to the output and grep for the
text which it shows in the actual output. Here[1] is an example of how
to do it.

[1]: https://github.com/git/git/blob/master/t/t3507-cherry-pick-conflict.sh#L42-L55

Regards,
Pranit Bauva
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help