Beeuni

Git

Version control and GitHub integration in the workspace.

Beeuni integrates with Git and GitHub so you can manage your project's version history directly from the workspace.

GitHub Connection

When you sign in with GitHub, Beeuni can:

  • Import repositories — clone existing repos into new boards
  • Push changes — commit and push code back to GitHub
  • Sync branches — pull the latest changes from remote

Working with Git

The sandbox includes Git pre-installed. You can use Git from the terminal:

git status
git add .
git commit -m "Add new feature"
git push origin main

Branches

You can create and switch branches to work on different features:

git checkout -b feature/new-api
git checkout main

Agent Git Operations

AI agents can also use Git to:

  • Create commits after making changes
  • Create and switch branches
  • Push changes to GitHub

All Git operations by agents are visible in the terminal, so you maintain full visibility and control over version history.

Tips

  • Connect your GitHub account during sign-up for the smoothest experience
  • Use branches to isolate agent work from your main branch
  • Review agent commits before merging to main

On this page