octokit.git.createBlob({owner,repo,content,});
name | required | description |
---|---|---|
owner | yes | |
repo | yes | |
content | yes | The new blob's content. |
encoding | no | The encoding used for |
See also: GitHub Developer Guide documentation.
Creates a new Git commit object.
Signature verification object
The response will include a verification
object that describes the result of verifying the commit's signature. The following fields are included in the verification
object:
Name | Type | Description |
---|---|---|
verified | boolean | Indicates whether GitHub considers the signature in this commit to be verified. |
reason | string | The reason for verified value. Possible values and their meanings are enumerated in table below. |
signature | string | The signature that was extracted from the commit. |
payload | string | The value that was signed. |
These are the possible values for reason
in the verification
object:
Value | Description |
---|---|
expired_key | The key that made the signature is expired. |
not_signing_key | The "signing" flag is not among the usage flags in the GPG key that made the signature. |
gpgverify_error | There was an error communicating with the signature verification service. |
gpgverify_unavailable | The signature verification service is currently unavailable. |
unsigned | The object does not include a signature. |
unknown_signature_type | A non-PGP signature was found in the commit. |
no_user | No user was associated with the committer email address in the commit. |
unverified_email | The committer email address in the commit was associated with a user, but the email address is not verified on her/his account. |
bad_email | The committer email address in the commit is not included in the identities of the PGP key that made the signature. |
unknown_key | The key that made the signature has not been registered with any user's account. |
malformed_signature | There was an error parsing the signature. |
invalid | The signature could not be cryptographically verified using the key whose key-id was found in the signature. |
valid | None of the above errors applied, so the signature is considered to be verified. |
octokit.git.createCommit({owner,repo,message,tree,});
name | required | description |
---|---|---|
owner | yes | |
repo | yes | |
message | yes | The commit message |
tree | yes | The SHA of the tree object this commit points to |
parents | no | 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. |
author | no | Information about the author of the commit. By default, the |
author.name | no | The name of the author (or committer) of the commit |
author.email | no | The email of the author (or committer) of the commit |
author.date | no | Indicates when this commit was authored (or committed). This is a timestamp in ISO 8601 format: |
committer | no | Information about the person who is making the commit. By default, |
committer.name | no | The name of the author (or committer) of the commit |
committer.email | no | The email of the author (or committer) of the commit |
committer.date | no | Indicates when this commit was authored (or committed). This is a timestamp in ISO 8601 format: |
signature | no | The PGP signature of the commit. GitHub adds the signature to the |
See also: GitHub Developer Guide documentation.
Creates a reference for your repository. You are unable to create new references for empty repositories, even if the commit SHA-1 hash used exists. Empty repositories are repositories without branches.
octokit.git.createRef({owner,repo,ref,sha,});
name | required | description |
---|---|---|
owner | yes | |
repo | yes | |
ref | yes | The name of the fully qualified reference (ie: |
sha | yes | The SHA1 value for this reference. |
key | no |
See also: GitHub Developer Guide documentation.
Note that creating a tag object does not create the reference that makes a tag in Git. If you want to create an annotated tag in Git, you have to do this call to create the tag object, and then create the refs/tags/[tag]
reference. If you want to create a lightweight tag, you only have to create the tag reference - this call would be unnecessary.
Signature verification object
The response will include a verification
object that describes the result of verifying the commit's signature. The following fields are included in the verification
object:
Name | Type | Description |
---|---|---|
verified | boolean | Indicates whether GitHub considers the signature in this commit to be verified. |
reason | string | The reason for verified value. Possible values and their meanings are enumerated in table below. |
signature | string | The signature that was extracted from the commit. |
payload | string | The value that was signed. |
These are the possible values for reason
in the verification
object:
Value | Description |
---|---|
expired_key | The key that made the signature is expired. |
not_signing_key | The "signing" flag is not among the usage flags in the GPG key that made the signature. |
gpgverify_error | There was an error communicating with the signature verification service. |
gpgverify_unavailable | The signature verification service is currently unavailable. |
unsigned | The object does not include a signature. |
unknown_signature_type | A non-PGP signature was found in the commit. |
no_user | No user was associated with the committer email address in the commit. |
unverified_email | The committer email address in the commit was associated with a user, but the email address is not verified on her/his account. |
bad_email | The committer email address in the commit is not included in the identities of the PGP key that made the signature. |
unknown_key | The key that made the signature has not been registered with any user's account. |
malformed_signature | There was an error parsing the signature. |
invalid | The signature could not be cryptographically verified using the key whose key-id was found in the signature. |
valid | None of the above errors applied, so the signature is considered to be verified. |
octokit.git.createTag({owner,repo,tag,message,object,type,});
name | required | description |
---|---|---|
owner | yes | |
repo | yes | |
tag | yes | The tag's name. This is typically a version (e.g., "v0.0.1"). |
message | yes | The tag message. |
object | yes | The SHA of the git object this is tagging. |
type | yes | The type of the object we're tagging. Normally this is a |
tagger | no | An object with information about the individual creating the tag. |
tagger.name | no | The name of the author of the tag |
tagger.email | no | The email of the author of the tag |
tagger.date | no | When this object was tagged. This is a timestamp in ISO 8601 format: |
See also: GitHub Developer Guide documentation.
The tree creation API accepts nested entries. If you specify both a tree and a nested path modifying that tree, this endpoint will overwrite the contents of the tree with the new path contents, and create a new tree structure.
If you use this endpoint to add, delete, or modify the file contents in a tree, you will need to commit the tree and then update a branch to point to the commit. For more information see "Create a commit" and "Update a reference."
octokit.git.createTree({owner,repo,tree,});
name | required | description |
---|---|---|
owner | yes | |
repo | yes | |
tree | yes | Objects (of |
tree[].path | no | The file referenced in the tree. |
tree[].mode | no | The file mode; one of |
tree[].type | no | Either |
tree[].sha | no | The SHA1 checksum ID of the object in the tree. Also called Note: Use either |
tree[].content | no | The content you want this file to have. GitHub will write this blob out and use that SHA for this entry. Use either this, or Note: Use either |
base_tree | no | The SHA1 of an existing Git tree object which will be used as the base for the new tree. If provided, a new Git tree object will be created from entries in the Git tree object pointed to by |
See also: GitHub Developer Guide documentation.
octokit.git.deleteRef({owner,repo,ref,});
name | required | description |
---|---|---|
owner | yes | |
repo | yes | |
ref | yes | ref+ parameter |
See also: GitHub Developer Guide documentation.
The content
in the response will always be Base64 encoded.
Note: This API supports blobs up to 100 megabytes in size.
octokit.git.getBlob({owner,repo,file_sha,});
name | required | description |
---|---|---|
owner | yes | |
repo | yes | |
file_sha | yes |
See also: GitHub Developer Guide documentation.
Gets a Git commit object.
Signature verification object
The response will include a verification
object that describes the result of verifying the commit's signature. The following fields are included in the verification
object:
Name | Type | Description |
---|---|---|
verified | boolean | Indicates whether GitHub considers the signature in this commit to be verified. |
reason | string | The reason for verified value. Possible values and their meanings are enumerated in table below. |
signature | string | The signature that was extracted from the commit. |
payload | string | The value that was signed. |
These are the possible values for reason
in the verification
object:
Value | Description |
---|---|
expired_key | The key that made the signature is expired. |
not_signing_key | The "signing" flag is not among the usage flags in the GPG key that made the signature. |
gpgverify_error | There was an error communicating with the signature verification service. |
gpgverify_unavailable | The signature verification service is currently unavailable. |
unsigned | The object does not include a signature. |
unknown_signature_type | A non-PGP signature was found in the commit. |
no_user | No user was associated with the committer email address in the commit. |
unverified_email | The committer email address in the commit was associated with a user, but the email address is not verified on her/his account. |
bad_email | The committer email address in the commit is not included in the identities of the PGP key that made the signature. |
unknown_key | The key that made the signature has not been registered with any user's account. |
malformed_signature | There was an error parsing the signature. |
invalid | The signature could not be cryptographically verified using the key whose key-id was found in the signature. |
valid | None of the above errors applied, so the signature is considered to be verified. |
octokit.git.getCommit({owner,repo,commit_sha,});
name | required | description |
---|---|---|
owner | yes | |
repo | yes | |
commit_sha | yes | commit_sha parameter |
See also: GitHub Developer Guide documentation.
Returns a single reference from your Git database. The :ref
in the URL must be formatted as heads/<branch name>
for branches and tags/<tag name>
for tags. If the :ref
doesn't match an existing ref, a 404
is returned.
Note: You need to explicitly request a pull request to trigger a test merge commit, which checks the mergeability of pull requests. For more information, see "Checking mergeability of pull requests".
octokit.git.getRef({owner,repo,ref,});
name | required | description |
---|---|---|
owner | yes | |
repo | yes | |
ref | yes | ref+ parameter |
See also: GitHub Developer Guide documentation.
Signature verification object
The response will include a verification
object that describes the result of verifying the commit's signature. The following fields are included in the verification
object:
Name | Type | Description |
---|---|---|
verified | boolean | Indicates whether GitHub considers the signature in this commit to be verified. |
reason | string | The reason for verified value. Possible values and their meanings are enumerated in table below. |
signature | string | The signature that was extracted from the commit. |
payload | string | The value that was signed. |
These are the possible values for reason
in the verification
object:
Value | Description |
---|---|
expired_key | The key that made the signature is expired. |
not_signing_key | The "signing" flag is not among the usage flags in the GPG key that made the signature. |
gpgverify_error | There was an error communicating with the signature verification service. |
gpgverify_unavailable | The signature verification service is currently unavailable. |
unsigned | The object does not include a signature. |
unknown_signature_type | A non-PGP signature was found in the commit. |
no_user | No user was associated with the committer email address in the commit. |
unverified_email | The committer email address in the commit was associated with a user, but the email address is not verified on her/his account. |
bad_email | The committer email address in the commit is not included in the identities of the PGP key that made the signature. |
unknown_key | The key that made the signature has not been registered with any user's account. |
malformed_signature | There was an error parsing the signature. |
invalid | The signature could not be cryptographically verified using the key whose key-id was found in the signature. |
valid | None of the above errors applied, so the signature is considered to be verified. |
octokit.git.getTag({owner,repo,tag_sha,});
name | required | description |
---|---|---|
owner | yes | |
repo | yes | |
tag_sha | yes |
See also: GitHub Developer Guide documentation.
Returns a single tree using the SHA1 value for that tree.
If truncated
is true
in the response then the number of items in the tree
array exceeded our maximum limit. If you need to fetch more items, use the non-recursive method of fetching trees, and fetch one sub-tree at a time.
octokit.git.getTree({owner,repo,tree_sha,});
name | required | description |
---|---|---|
owner | yes | |
repo | yes | |
tree_sha | yes | |
recursive | no | Setting this parameter to any value returns the objects or subtrees referenced by the tree specified in |
See also: GitHub Developer Guide documentation.
Returns an array of references from your Git database that match the supplied name. The :ref
in the URL must be formatted as heads/<branch name>
for branches and tags/<tag name>
for tags. If the :ref
doesn't exist in the repository, but existing refs start with :ref
, they will be returned as an array.
When you use this endpoint without providing a :ref
, it will return an array of all the references from your Git database, including notes and stashes if they exist on the server. Anything in the namespace is returned, not just heads
and tags
.
Note: You need to explicitly request a pull request to trigger a test merge commit, which checks the mergeability of pull requests. For more information, see "Checking mergeability of pull requests".
If you request matching references for a branch named feature
but the branch feature
doesn't exist, the response can still include other matching head refs that start with the word feature
, such as featureA
and featureB
.
octokit.git.listMatchingRefs({owner,repo,ref,});
name | required | description |
---|---|---|
owner | yes | |
repo | yes | |
ref | yes | ref+ parameter |
per_page | no | Results per page (max 100) |
page | no | Page number of the results to fetch. |
See also: GitHub Developer Guide documentation.
octokit.git.updateRef({owner,repo,ref,sha,});
name | required | description |
---|---|---|
owner | yes | |
repo | yes | |
ref | yes | ref+ parameter |
sha | yes | The SHA1 value to set this reference to |
force | no | Indicates whether to force the update or to make sure the update is a fast-forward update. Leaving this out or setting it to |
See also: GitHub Developer Guide documentation.