Accept a push, and turn it into a build — POST /v1/git/{org}/{project}/{repo}/git-receive-pack
The pack-transfer phase of a push, and the point at which a push becomes an EVENT.
POST /v1/git/{org}/{project}/{repo}/git-receive-pack
| Address | https://api.hanzo.ai/v1/git/{org}/{project}/{repo}/git-receive-pack |
| Method | POST |
| Operation | post_git_by_org_by_project_by_repo_git-receive-pack |
| Auth | Authorization: Bearer $HANZO_API_KEY |
The pack-transfer phase of a push, and the point at which a push becomes an EVENT. NEVER ANONYMOUS: a push always requires an authenticated org, and the org in the path must equal it.
Once the pack is on disk the repository's storage usage is metered and a build is fired for every branch whose tip actually moved, computed from the before/after branch diff rather than from what the client claimed. That runs on a cancel-immune context, so a client that hangs up the moment its push lands still gets its build, and it runs even when git itself exited non-zero — the refs on disk are the ground truth. Repacking housekeeping is detached and never blocks the response.
A Content-Type other than application/x-git-receive-pack-request is 400. Addressed under the API prefix, with the PROJECT as a middle path segment: project scope otherwise rides a header a git client cannot send, so this path is the only usable remote for a project-scoped repository. This is git's own wire protocol, not an API call to make by hand: point a git client at the clone URL and it makes this request itself.
Request
4 fields, body application/octet-stream.
| Field | In | Type | Required | Description |
|---|---|---|---|---|
org | path | string | yes | |
project | path | string | yes | |
repo | path | string | yes | |
(body) | body | string (binary) | yes |
Response
The document declares no response body for this operation. It answers 200 on success and the platform error shape on failure — see Errors.
Examples
hanzo git org project git-receive-pack <org> <project> <repo>import { Configuration, GitApi } from 'hanzoai';
const api = new GitApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.postGitByOrgByProjectByRepoGit-receive-pack({ org: 'org', project: 'project', repo: 'repo' });from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import GitApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = GitApi(client).post_git_by_org_by_project_by_repo_git-receive-pack(org='org', project='project', repo='repo')cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.GitAPI.PostGitByOrgByProjectByRepoGit-receive-pack(context.Background()).Execute()
if err != nil {
return err
}use hanzo_cloud::apis::{configuration::Configuration, git_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = git_api::post_git_by_org_by_project_by_repo_git-receive-pack(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.GitApi;
ApiClient client = new ApiClient();
client.setRequestInterceptor(b -> b.header("Authorization", "Bearer " + System.getenv("HANZO_API_KEY")));
var result = new GitApi(client).postGitByOrgByProjectByRepoGit-receive-pack();The method above is the one at the current release of the document. [email protected] (npm) and [email protected] (PyPI) were generated from an earlier release, where this operation carried a different id, so it spells the method differently — regenerating the clients is what makes the two agree. SDKs →
curl -X POST https://api.hanzo.ai/v1/git/<org>/<project>/<repo>/git-receive-pack \
-H "Authorization: Bearer $HANZO_API_KEY"Tool git, op post_git_by_org_by_project_by_repo_git-receive-pack — POST the JSON-RPC envelope to https://api.hanzo.ai/v1/mcp.
curl -X POST https://api.hanzo.ai/v1/mcp \
-H "Authorization: Bearer $HANZO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "git",
"arguments": {
"op": "post_git_by_org_by_project_by_repo_git-receive-pack",
"input": {
"org": "<org>",
"project": "<project>",
"repo": "<repo>"
}
}
}
}'How is this guide?