# Git Status

Git status display (branch, staged, modified, ahead/behind)



<ComponentPreview base="opentui" name="git-status-demo" />

Installation [#installation]

<CodeTabs>
  <TabsList>
    <TabsTrigger value="cli">
      Command
    </TabsTrigger>

    <TabsTrigger value="manual">
      Manual
    </TabsTrigger>
  </TabsList>

  <TabsContent value="cli">
    ```bash
    npx shadcn@latest add @termcn/opentui-git-status
    ```
  </TabsContent>

  <TabsContent value="manual">
    <Steps>
      <Step>
        Copy and paste the following code into your project.
      </Step>

      <ComponentSource base="opentui" name="git-status" title="components/ui/git-status.tsx" />

      <Step>
        Update the import paths to match your project setup.
      </Step>
    </Steps>
  </TabsContent>
</CodeTabs>

Usage [#usage]

```tsx
import { GitStatus } from "@/components/ui/git-status";
```

```tsx
<GitStatus branch="main" staged={2} modified={5} ahead={1} behind={0} />
```

API Reference [#api-reference]

GitStatus [#gitstatus]

| Prop       | Type     | Default    |
| ---------- | -------- | ---------- |
| `branch`   | `string` | `required` |
| `staged`   | `number` | `0`        |
| `modified` | `number` | `0`        |
| `ahead`    | `number` | `0`        |
| `behind`   | `number` | `0`        |
