TIL: 查看包含某个 commit 的最近 tag

可以用来判断某个 commit 被包含在哪个版本里


git describe --contains <commit-hash>
 
 
Back to Top