+ [5 years ago] nedbat cos: perhaps they say origin/the-branch-name ?
+ [5 years ago] cos yes they do. I guess you're saying this branch may hve been deleted from origin while the rest were not? (which would also be really puzzling)
+ [5 years ago] nedbat cos: no. you deleted them locally. origin still has them (probably). You still have your local idea of origin's branch. that's what "origin/the-branch" means.
+ [5 years ago] cos I deleted all these branches locally, yes. So why would origin still have most of them, but be missing that one where the tag is? Maybe I can figure it out but it seems puzzling.
+ [5 years ago] cos oh well, I'll stop trying to understand this now that I know I can use --all to see all the tags. I guess what I really want is to show all commits merged into master, that are more recent than a particular tag, even if that tag isn't in master.

message no. 181594

Posted by nedbat in #github at 2020-06-02T16:24:42Z

mydog2: btw, not sure if you are waiting for a greeting. on irc, it works better to just jump right in with the topic
+ [5 years ago] cos I guess I could do that in two steps, first --all and capture the hash for the tag, then git log hash..HEAD
+ [5 years ago] nedbat cos: hash..HEAD won't do what you want if they aren't on the same line
+ [5 years ago] nedbat cos: also, you can get the hash for a tag with: git rev-parse tagname
+ [5 years ago] cos oh that's useful.
+ [5 years ago] cos and I think that is what I want - though git is convoluted enought that if it's not what I want it may take a long time to figure it out :/