Documentation Index
Fetch the complete documentation index at: https://docs.gravixlayer.ai/llms.txt
Use this file to discover all available pages before exploring further.
url must use http://, https://, ssh://, git://, or SCP-style SSH (for example git@github.com:org/repo.git). The file:// scheme is not allowed.
For private HTTPS repositories, pass auth_token; the API uses it only for that clone.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
url | string | Yes | Remote repository URL (allowed schemes only) |
path | string | Yes | Directory inside the runtime where the repo will be cloned |
branch | string | No | Branch to check out after clone |
depth | integer | No | Shallow clone depth (git clone --depth) |
auth_token | string | No | Token for HTTPS authentication (private repos) |
Response
| Field | Type | Description |
|---|---|---|
success | boolean | Whether the git command completed successfully |
exit_code | integer | Process exit code from git |
stdout | string | Standard output from git |
stderr | string | Standard error from git |
error | string | Error message when the operation fails |