> ## Documentation Index
> Fetch the complete documentation index at: https://docs.paradime.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Git Lite

> The default Git panel in the Paradime Code IDE: create branches, write AI-assisted commits, ship changes, and draft pull requests with DinoAI.

export const Arcade = ({src, title}) => <div style={{
  position: 'relative',
  paddingBottom: 'calc(56.2225% + 41px)',
  height: 0,
  width: '100%'
}}>
    <iframe src={src} title={title} frameBorder="0" loading="lazy" allow="clipboard-write" allowFullScreen style={{
  position: 'absolute',
  top: 0,
  left: 0,
  width: '100%',
  height: '100%',
  colorScheme: 'light'
}} />
  </div>;

Git Lite is the default source control panel in the Code IDE. It provides a purpose-built Git workflow that keeps you in sync with your main branch, perfect for users new to Git or those who prefer a streamlined interface. Open it from the **Source Control** icon in the left icon strip.

<Info>
  Git Lite creates new branches from your remote main/master branch and automatically handles syncing with remote branches. You can switch to [Git Advanced](/products/code-ide/version-control/git-advanced) at any time from the status bar.
</Info>

## What's in the panel

| Element                  | What it does                                                                                             |
| ------------------------ | -------------------------------------------------------------------------------------------------------- |
| **Commit message**       | The box where you describe your change.                                                                  |
| **Write commit**         | Generates a commit message from your staged changes with [DinoAI](/products/code-ide/write-code/dinoai). |
| **Ship it**              | Commits and pushes your changes to your remote branch.                                                   |
| **Draft PR with DinoAI** | Opens a pull request and drafts its description with DinoAI.                                             |
| **Branch dropdown**      | Shows your current branch and lets you create or switch branches.                                        |
| **Sync status**          | Tells you whether your branch is up to date with origin, with a manual refresh button.                   |
| **Changes**              | The list of modified files, with **Select all** and **Discard all changes**.                             |

## Common actions

* **Create or switch a branch**: use the branch dropdown, then create a new branch or search for an existing one.
* **Commit and push**: enter a message (or click **Write commit**), then click **Ship it**.
* **Open a pull request**: once all changes are committed, click **Draft PR with DinoAI** to open the PR in your Git provider.
* **Discard changes**: click **Discard all changes** to abandon uncommitted work.

<Arcade src="https://demo.arcade.software/AZDaPJ6I1gZv3Pn3xG4F?embed&embed_mobile=tab&embed_desktop=inline&show_copy_link=true" title="Git Lite" />

<Info>
  For step-by-step branch, commit, and pull request workflows, see the [Git Lite guide](/guides/working-with-git/git-lite). For resolving conflicts, see [Merge conflicts](/guides/working-with-git/merge-conflicts).
</Info>


## Related topics

- [Git Lite](/guides/working-with-git/git-lite.md)
- [Delete Branches](/guides/working-with-git/delete-branches.md)
- [Git Advanced](/products/code-ide/version-control/git-advanced.md)
- [Working with Git](/guides/working-with-git/index.md)
- [Accelerating GitOps](/guides/paradime-101/getting-started-with-the-paradime-ide/dinoai-accelerating-your-analytics-engineering-workflow/accelerating-git-ops.md)
