471 文字
2 分
GitHubのリポジトリURL、末尾に追加するだけで色々見れるやつ
2025-11-18

GitHubのリポジトリURL、末尾に何か追加すると色々見れるって知ってました?

たまたまURLいじってたら気づいたので、どんなパスがあるのか調べてみました。

人に関する情報#

/stargazers - スターした人を確認#

リポジトリにスターを付けた人のリストが見れます。

https://github.com/owner/repo/stargazers

/watchers - ウォッチャーを確認#

リポジトリをウォッチしている人のリスト。

https://github.com/owner/repo/watchers

/network/members - フォークしたリポジトリ#

誰がフォークしたか、そのフォーク先も見れます。

https://github.com/owner/repo/network/members

/graphs/contributors - コントリビューター#

誰がどれだけコントリビュートしてるかグラフで見れます。

https://github.com/owner/repo/graphs/contributors

活動状況・統計#

/pulse - 最近のアクティビティ#

プルリク、イシュー、コミットの最近の動きをまとめて表示。

https://github.com/owner/repo/pulse

/graphs/commit-activity - コミット活動#

過去1年間のコミット数を週単位でグラフ表示。

https://github.com/owner/repo/graphs/commit-activity

/graphs/code-frequency - コード変更頻度#

追加・削除された行数を週単位で表示。リポジトリがどれくらい活発か分かります。

https://github.com/owner/repo/graphs/code-frequency

/network - ネットワークグラフ#

ブランチとフォークの関係をビジュアルで表示。

https://github.com/owner/repo/network

コード関連#

/commits - コミット履歴#

全コミット履歴。

https://github.com/owner/repo/commits

/branches - ブランチ一覧#

全ブランチのリスト。

https://github.com/owner/repo/branches

/tags - タグ一覧#

バージョンタグのリスト。

https://github.com/owner/repo/tags

/compare - ブランチ比較#

ブランチ間の差分を比較。

https://github.com/owner/repo/compare/branch1...branch2

/blame/main/path/to/file - ファイルの履歴#

各行を誰がいつ書いたか確認。

https://github.com/owner/repo/blame/main/README.md

その他#

/issues - イシュー一覧#

https://github.com/owner/repo/issues

/pulls - プルリクエスト一覧#

https://github.com/owner/repo/pulls

/actions - GitHub Actions#

https://github.com/owner/repo/actions

/wiki - Wiki#

https://github.com/owner/repo/wiki

/releases - リリース一覧#

https://github.com/owner/repo/releases

/packages - パッケージ#

https://github.com/owner/repo/packages

/projects - プロジェクト#

https://github.com/owner/repo/projects

/security/advisories - セキュリティ情報#

https://github.com/owner/repo/security/advisories

制限事項#

一部のグラフ機能(Pulse、Contributors、Code frequency など)は:

  • 公開リポジトリでGitHub Freeの場合のみ利用可能
  • コミット数が10,000未満のリポジトリのみ対応

有料プランなら非公開リポジトリでも使えます。


まとめ#

ブラウザのアドレスバーでURL末尾をちょっと変えるだけで、色々な情報が見れるので便利です。

特に /pulse/graphs/contributors は、リポジトリの活動状況を把握するのに重宝してます。


参考#

GitHubのリポジトリURL、末尾に追加するだけで色々見れるやつ
https://p4ni.com/posts/github-url-paths/
作者
kpab
公開日
2025-11-18
ライセンス
CC BY-NC-SA 4.0