ablog

不器用で落着きのない技術者のメモ

GitHub でコミットハッシュからコミットを探す

https://github.com/{owner}/{project}/commit/{hash} の {hash} にコミットハッシュを指定すればよい。

例えば、

antirez in commit 2810de9f:
Cluster: abort loading nodes data if vars arguments are unbalanced.
1 file changed, 1 insertion(+)

https://raw.githubusercontent.com/antirez/redis/5.0/00-RELEASENOTES

の場合、コミットハッシュ(短縮形)が "2810de9f" なので、

https://github.com/redis/redis/commit/2810de9f

にアクセスすればよい。