On Wed, Jun 29, 2016 at 12:48:33PM +0100, Laszlo Papp wrote: > Old releases are maintained with important bug fixes or even new features > in our case. It sometimes means that we need to cherry-pick commits across > branches, like from master to a specific release branch. > > Cherry-picking changes the hash of the commit, therefore, this may no > longer work for cherry-picks: > > git tag --contains > > I am thinking of having something like: > > git tag --contains-follow > > which would follow cherry-picks. I am not sure how easily and/or > efficiently this can be implemented, but my gut feeling is that in the vast > majority of the cases, the content check would bail out already at the > "subject line". Git generally considers commits "equivalent" based on the patch-id, whic his a sha1 of the diff (modulo some canonicalization). So you could ask right now for the patch-id of a particular commit: git show $commit | git patch-id >needle and then the patch-id of all tagged commits: git log -p --tags | git patch-id | sort >haystack Each line will have the patch-id followed by the commit id. You can then correlate them (join is part of GNU coreutils): join needle haystack | cut -d' ' -f2- >synonyms That gives you a list of synonym commits, which you can use to ask git which tags contain any of them: git tag $(for i in $(cat synonyms); do echo "--contains $i"; done) The big downside is that generating the haystack is expensive (it has to do a diff on every commit). But if this is something you do a lot, you can save the haystack and incrementally update it with new commits. Of course there are other ways of determining commit equivalence. You could find ones with duplicate commit messages, or duplicate subjects, or whatever. But if you have a cherry-picking workflow, I suspect the easiest thing may be to simply use "git cherry-pick -x", which will write the sha1 of the original commit into the cherry-picked commit message. You can then use that to correlate directly. So there's no specific "--contains-follow" as you want, but the tools are there to do it (and more flexibly and efficiently, depending on your needs). That doesn't necessarily mean it's not a good idea to make the simple case easier, though. -Peff -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html