Getting Started
This guide will walk you through the first steps of setting up an account, creating an organization, and pushing your first repository to VeloGit.
1. Create an Account
Section titled “1. Create an Account”VeloGit is open to sign up — no invite needed.
- Go to velogit.com and click Sign up free.
- Complete the registration flow via the identity provider.
- You’ll land on your dashboard, ready to create an organization.
2. Create an Organization
Section titled “2. Create an Organization”VeloGit is multi-tenant by design. Every repository belongs to an Organization.
- Click New Organization from your dashboard.
- Choose a unique name for your organization.
- Once created, you’ll be redirected to your new organization’s dashboard.
3. Create a Repository
Section titled “3. Create a Repository”- From your organization dashboard, click New Repository.
- Provide a name and choose the visibility (Public or Private).
- Click Create.
4. Push Your First Commit
Section titled “4. Push Your First Commit”VeloGit provides standard Git Smart HTTP endpoints. You’ll need a Personal Access Token (PAT) to authenticate your Git client over HTTPS.
Generate a PAT
Section titled “Generate a PAT”- Click your avatar in the top navigation bar.
- Select Developer Settings from the dropdown.
- Click Generate Token and copy it immediately — it will only be shown once.
Local Setup
Section titled “Local Setup”In your local project directory:
git initgit add .git commit -m "initial commit"git remote add origin https://velogit.com/<your-org>/<your-repo>.gitgit push -u origin mainWhen prompted for credentials, use any username (e.g., git) and your PAT as the password.
5. Explore the Ghost Workspace
Section titled “5. Explore the Ghost Workspace”Once you push, your configured AI agents will begin analyzing the changes.
- Navigate to the repository in the UI.
- Click the Ghost Workspace tab.
- Review any generated Shadow Fragments.
- Click Meld to apply a suggestion directly to your branch.