Some services which extend GitHub Enterprise require a sufficiently recent version. But as a standard user of GH:E, how can I determine, without bugging my admin, which version my company has installed?
4 Answers
I was searching for the same information for our github enterprise version. In the page source I found the following:
<a href="/">
<span class="octicon-mark-github" title="GitHub Enterprise Version 11.10.xxx"></span>
</a>
This is the GitHub Octocat logo in the footer of GitHub Enterprise - just hover over it to get a tooltip with the version number.

- 2,672
- 3
- 23
- 30

- 839
- 10
- 15
-
This was sufficient! Thanks! – Marcello DeSales Nov 10 '15 at 07:44
-
From the command-line: `$ curl -sS https://github.corp/login | grep enterprise/2... -o` returns `enterprise/2.10` – MarkHu Jul 13 '17 at 23:56
-
1I've found it in: `...` – Gerard Brull Apr 03 '18 at 10:02
-
1@GerardBrull - I think your answer is the correct one! Thanks! – Brad Parks Dec 14 '18 at 15:51
-
How did you get on 11.10.xxx? We are still on 3.x :) – wim Oct 31 '22 at 18:39
I found that if you go to the GHE Home page and scroll to the bottom, you can find the version mentioned as shown in the snapshot

- 678
- 1
- 9
- 20
I realize this isn't extremely user friendly, but it is available to any user even if not logged in.
Since Github Enterprise v2.12, you can get the GitHub Enterprise version from the service's /meta
API endpoint. The returned JSON will include an installed_version
field containing the version number.
https://ghe.company.com/api/v3/meta
{
"verifiable_password_authentication": true,
"installed_version": "2.20.0"
}
If connecting to api.github.com
, the JSON returned from GitHub's /meta
API endpoint will have other additional fields but will not include an installed_version
field.
https://api.github.com/meta
{
"verifiable_password_authentication": true,
"ssh_key_fingerprints": { ... },
"hooks": [ ... ],
"web": [ ... ],
"api": [ ... ],
"git": [ ... ],
"pages": [ ... ],
"importer": [ ... ]
}

- 1,887
- 13
- 24
As a GHE admin, I don't think that the version is displayed to non-admin users, even in the API meta information or page source, etc.
However, for admins, it is displayed in a bar across the top of every page. So, if you do ask them, they'll have that info readily available on their screen if they're logged in.

- 1,761
- 14
- 25