CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Fri, 22 Aug 2025 06:48:28 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20131116001054
location: https://web.archive.org/web/20131116001054/https://developer.github.com/v3/git/commits/
server-timing: captures_list;dur=0.723991, exclusion.robots;dur=0.029998, exclusion.robots.policy;dur=0.018663, esindex;dur=0.011376, cdx.remote;dur=71.076161, LoadShardBlock;dur=119.892789, PetaboxLoader3.datanode;dur=53.486946
x-app-server: wwwb-app200
x-ts: 302
x-tr: 219
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=1
set-cookie: wb-p-SERVER=wwwb-app200; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Fri, 22 Aug 2025 06:48:29 GMT
content-type: text/html
x-archive-orig-server: GitHub.com
x-archive-orig-last-modified: Fri, 15 Nov 2013 12:27:33 GMT
x-archive-orig-expires: Sat, 16 Nov 2013 00:20:53 GMT
x-archive-orig-cache-control: max-age=600
x-archive-orig-content-length: 18833
x-archive-orig-accept-ranges: bytes
x-archive-orig-date: Sat, 16 Nov 2013 00:10:53 GMT
x-archive-orig-via: 1.1 varnish
x-archive-orig-age: 0
x-archive-orig-connection: close
x-archive-orig-x-served-by: cache-v41-ASH
x-archive-orig-x-cache: MISS
x-archive-orig-x-cache-hits: 0
x-archive-orig-vary: Accept-Encoding
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: windows-1252
memento-datetime: Sat, 16 Nov 2013 00:10:54 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Thu, 23 Jun 2011 02:01:34 GMT", ; rel="prev memento"; datetime="Tue, 22 Oct 2013 23:06:38 GMT", ; rel="memento"; datetime="Sat, 16 Nov 2013 00:10:54 GMT", ; rel="next memento"; datetime="Mon, 23 Dec 2013 02:53:30 GMT", ; rel="last memento"; datetime="Mon, 18 Nov 2024 06:09:27 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: alexa20131116-15/51_37_20131116000926_crawl101.arc.gz
server-timing: captures_list;dur=0.476710, exclusion.robots;dur=0.020470, exclusion.robots.policy;dur=0.012547, esindex;dur=0.009839, cdx.remote;dur=8.070307, LoadShardBlock;dur=209.947839, PetaboxLoader3.datanode;dur=165.950705, PetaboxLoader3.resolve;dur=291.553843, load_resource;dur=304.312195
x-app-server: wwwb-app200
x-ts: 200
x-tr: 589
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
Git Commits | GitHub API
Commits API
Get a Commit
GET /repos/:owner/:repo/git/commits/:sha
Response
Status: 200 OK
X-RateLimit-Limit: 5000
X-RateLimit-Remaining: 4999
{
"sha": "7638417db6d59f3c431d3e1f261cc637155684cd",
"url": "https://api.github.com/repos/octocat/Hello-World/git/commits/7638417db6d59f3c431d3e1f261cc637155684cd",
"author": {
"date": "2010-04-10T14:10:01-07:00",
"name": "Scott Chacon",
"email": "schacon@gmail.com"
},
"committer": {
"date": "2010-04-10T14:10:01-07:00",
"name": "Scott Chacon",
"email": "schacon@gmail.com"
},
"message": "added readme, because im a good github citizen\n",
"tree": {
"url": "https://api.github.com/repos/octocat/Hello-World/git/trees/691272480426f78a0138979dd3ce63b77f706feb",
"sha": "691272480426f78a0138979dd3ce63b77f706feb"
},
"parents": [
{
"url": "https://api.github.com/repos/octocat/Hello-World/git/commits/1acc419d4d6a9ce985db7be48c6349a0475975b5",
"sha": "1acc419d4d6a9ce985db7be48c6349a0475975b5"
}
]
}
Create a Commit
POST /repos/:owner/:repo/git/commits
Parameters
Name | Type | Description |
---|---|---|
message |
string |
Required. The commit message |
tree |
string |
Required. The SHA of the tree object this commit points to |
parents |
array of string s |
Required. The SHAs of the commits that were the parents of this commit. If omitted or empty, the commit will be written as a root commit. For a single parent, an array of one SHA should be provided; for a merge commit, an array of more than one should be provided. |
Optional Parameters
You can provide an additional commiter
parameter, which is a hash containing
information about the committer. Or, you can provide an author
parameter, which
is a hash containing information about the author.
The committer
section is optional and will be filled with the author
data if omitted. If the author
section is omitted, it will be filled
in with the authenticated user’s information and the current date.
Both the author
and commiter
parameters have the same keys:
Name | Type | Description |
---|---|---|
name |
string |
The name of the author (or commiter) of the commit |
email |
string |
The email of the author (or commiter) of the commit |
date |
string |
Indicates when this commit was authored (or committed). This is a timestamp in ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ . |
Example Input
{
"message": "my commit message",
"author": {
"name": "Scott Chacon",
"email": "schacon@gmail.com",
"date": "2008-07-09T16:13:30+12:00"
},
"parents": [
"7d1b31e74ee336d15cbd21741bc88a537ed063a0"
],
"tree": "827efc6d56897b048c772eb4087f854f46256132"
}
Response
Status: 201 Created
Location: https://api.github.com/git/:owner/:repo/commit/:sha
X-RateLimit-Limit: 5000
X-RateLimit-Remaining: 4999
{
"sha": "7638417db6d59f3c431d3e1f261cc637155684cd",
"url": "https://api.github.com/repos/octocat/Hello-World/git/commits/7638417db6d59f3c431d3e1f261cc637155684cd",
"author": {
"date": "2008-07-09T16:13:30+12:00",
"name": "Scott Chacon",
"email": "schacon@gmail.com"
},
"committer": {
"date": "2008-07-09T16:13:30+12:00",
"name": "Scott Chacon",
"email": "schacon@gmail.com"
},
"message": "my commit message",
"tree": {
"url": "https://api.github.com/repos/octocat/Hello-World/git/trees/827efc6d56897b048c772eb4087f854f46256132",
"sha": "827efc6d56897b048c772eb4087f854f46256132"
},
"parents": [
{
"url": "https://api.github.com/repos/octocat/Hello-World/git/commits/7d1b31e74ee336d15cbd21741bc88a537ed063a0",
"sha": "7d1b31e74ee336d15cbd21741bc88a537ed063a0"
}
]
}
This website is a public GitHub repository. Please help us by forking the project and adding to it.