Re: How to find commits unique to a branch

2016-06-22 Thread Junio C Hamano
Nikolaus Rath writes: > On Jun 21 2016, Junio C Hamano wrote: >> >> I find that the first sentence of the description is fuzzy >> ("Determine whether" would imply that you would get "Yes/No" but >> what we want is "here are the commits that do not have counterpart >> in 2fix"),... > > This works

Re: How to find commits unique to a branch

2016-06-22 Thread Nikolaus Rath
On Jun 21 2016, Michael J Gruber wrote: > Nikolaus Rath venit, vidit, dixit 21.06.2016 01:21: >> On Jun 20 2016, Junio C Hamano wrote: >>> Nikolaus Rath writes: >>> What's the best way to find all commits in a branch A that have not been cherry-picked from (or to) another branch B? >>>

Re: How to find commits unique to a branch

2016-06-22 Thread Nikolaus Rath
On Jun 21 2016, Junio C Hamano wrote: > Nikolaus Rath writes: > >> On Jun 20 2016, Nikolaus Rath wrote: >>> On Jun 20 2016, Junio C Hamano wrote: Nikolaus Rath writes: > What's the best way to find all commits in a branch A that have not been > cherry-picked from (or to) anot

Re: How to find commits unique to a branch

2016-06-21 Thread Junio C Hamano
Nikolaus Rath writes: > On Jun 20 2016, Nikolaus Rath wrote: >> On Jun 20 2016, Junio C Hamano wrote: >>> Nikolaus Rath writes: >>> What's the best way to find all commits in a branch A that have not been cherry-picked from (or to) another branch B? I think I could format-p

Re: How to find commits unique to a branch

2016-06-21 Thread Nikolaus Rath
On Jun 20 2016, Nikolaus Rath wrote: > On Jun 20 2016, Junio C Hamano wrote: >> Nikolaus Rath writes: >> >>> What's the best way to find all commits in a branch A that have not been >>> cherry-picked from (or to) another branch B? >>> >>> I think I could format-patch all commits in every branch

Re: How to find commits unique to a branch

2016-06-21 Thread Michael J Gruber
Nikolaus Rath venit, vidit, dixit 21.06.2016 01:21: > On Jun 20 2016, Junio C Hamano wrote: >> Nikolaus Rath writes: >> >>> What's the best way to find all commits in a branch A that have not been >>> cherry-picked from (or to) another branch B? >>> >>> I think I could format-patch all commits in

Re: How to find commits unique to a branch

2016-06-20 Thread Nikolaus Rath
On Jun 20 2016, Junio C Hamano wrote: > Nikolaus Rath writes: > >> What's the best way to find all commits in a branch A that have not been >> cherry-picked from (or to) another branch B? >> >> I think I could format-patch all commits in every branch into separate >> files, hash the Author and Da

Re: How to find commits unique to a branch

2016-06-20 Thread Junio C Hamano
Nikolaus Rath writes: > What's the best way to find all commits in a branch A that have not been > cherry-picked from (or to) another branch B? > > I think I could format-patch all commits in every branch into separate > files, hash the Author and Date of each files, and then compare the two > li

How to find commits unique to a branch

2016-06-20 Thread Nikolaus Rath
Hello, What's the best way to find all commits in a branch A that have not been cherry-picked from (or to) another branch B? I think I could format-patch all commits in every branch into separate files, hash the Author and Date of each files, and then compare the two lists. But I'm hoping there's