Skip to content

Git

The git helper provides a thin wrapper around invoking the git executable for repository operations.

Methods

defaultBranch

Resolves the default branch, typically main or master, in the repository.

const df = await git.defaultBranch()

lastTag

Gets the last tag in the repository.

const tag = await git.lastTag()

branch

Gets the current branch of the repository.

const branchName = await git.branch()

exec

Executes a git command in the repository and returns the stdout.

const output = await git.exec(["status"])

listBranches

Lists the branches in the git repository.

const branches = await git.listBranches()

listFiles

Finds specific files in the git repository.

const files = await git.listFiles("modified")

diff

Gets the diff for the current repository state.

const diffOutput = await git.diff({ staged: true })

log

Lists the commits in the git repository.

const commits = await git.log()

Configuring Ignores

Since GenAIScript uses git, it already supports the .gitignore instructions. You can also provide additional repository-wide ignore through the .gitignore.genai file at the workspace root.

.gitignore.genai
**/genaiscript.d.ts

Git in other repositories

Use git.client to open a git client on a different working directory. This allows you to run git commands on a different repository.

const other = git.client("/path/to/other/repo")
const branch = await other.branch()