HarborHarbor
DocumentationGuidesPlugins
All plugins

Git CLI

Local Git commands via sand on the originating machine

CLICategory: devPopularity 42git

Local Git commands via sand on the originating machine

Install

hrbr plugins install git-cli

Quick start

hrbr exec 'return await sand.git.version({})'

Or from a Function:

import { defineOrbitJob } from "@hrbr/orbit";

export default defineOrbitJob({
  name: "git-cli-example",
  handler: async (ctx) => {
    return await ctx.plugins.git.list({ limit: 5 });
  },
});

Tools

See available tools with:

hrbr plugins tools git-cli

Or open the dashboard plugin page for the live tool list.