Thread (4 messages) flat view 4 messages, 2 authors, 2016-06-15

Re: How to manage merges from one line while excluding its merges from another

From: Jonathan Nieder <hidden>
Date: 2016-06-15 22:49:00

Lane Brooks wrote:
I'll take a look at your suggested cherry-pick script. Can it be
rerun multiple times or is it run one-time only. In others, as
'devel' continues to grow can I run it again and will it cherry-pick
intelligently or will it try to reapply commits already
cherry-picked?
Good point.

  git cherry my devel main |
  grep -v ^- |
  while read mark rev
  do
	git cherry-pick $rev ||
	{
		echo >&2 cherry-pick failed
		break
	}
 done

I hadn’t known about the third argument to ‘git cherry’ before.
Thanks for the example.
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help