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

# Introduction

Welcome to Anchor4Git — a simple tool that helps you and your small team share work without needing to learn complicated Git commands.

## What is Anchor4Git?

Anchor4Git wraps Git into a three-step workflow that anyone can understand:

<Steps>
  <Step title="Download" />

  <Step title="Edit" />

  <Step title="Upload" />
</Steps>

Instead of learning commands like `commit`, `push`, `pull`, `merge`, and `rebase`, you only need three:

| Step         | Command     | What it does                                     |
| ------------ | ----------- | ------------------------------------------------ |
| **Download** | `ag fetch`  | Get the latest work from your team               |
| **Edit**     | `ag save`   | Make changes in your editor and store a snapshot |
| **Upload**   | `ag upload` | Share your changes with the team                 |

That's it. Everything else is handled automatically.

## Who is this for?

Anchor4Git is built for **small teams of 2–4 people** who want to collaborate on code or documents **without learning Git**. You don't need to know what a "branch" is, what "commit" means, or how to resolve merge conflicts in a terminal.

## Quick Start

```bash theme={null}
# Get the project from your team
ag fetch https://github.com/team/project.git

# Make your changes (edit files in your editor)

# Save a snapshot of your work
ag save "Added the login page"

# Share it with the team
ag upload
```

## Documentation Pages

| Page                                           | Description                      |
| ---------------------------------------------- | -------------------------------- |
| [Installation](/anchor4git/installation)       | How to install Anchor4Git        |
| [Quickstart](/anchor4git/quickstart)           | Your first time using Anchor4Git |
| [Commands](/anchor4git/commands/initialise)    | Detailed help for each command   |
| [Workflows](/anchor4git/workflow)              | Common ways to use Anchor4Git    |
| [Troubleshooting](/anchor4git/troubleshooting) | Fix common problems              |

## Need Help?

If you get stuck, run any command with `--help`:

```bash theme={null}
ag --help
ag fetch --help
ag save --help
ag upload --help
```
