Re: git tag --contains for cherry-picks

2016-06-30 Thread Jakub Narębski
anches, 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

Re: git tag --contains for cherry-picks

2016-06-30 Thread Jeff King
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 >

git tag --contains for cherry-picks

2016-06-29 Thread Laszlo Papp
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