Getting started
Push your first repo to Gluecron in under 60 seconds. No special tooling required — just git.
1. Create an account
Head to /register, pick a username and password. Your username becomes part of every repo URL:gluecron.com/<username>/<repo>.
Verify your email when the one-time link arrives. Verified addresses receive issue, PR, and gate-run notifications.
2. Create your first repo
From the dashboard hit + New, or visit /new. Choose:
- Name — lowercase, hyphens OK, no spaces.
- Visibility — public (anyone can clone) or private (only you and collaborators).
- Initialize with README — tick this so you get a default branch immediately.
3. Push an existing local repo
Add gluecron as a remote and push your default branch. Replaceyou and my-project with your actual username and repo name.
# Add the remote
git remote add origin https://gluecron.com/you/my-project.git
# Push (first time — track the upstream branch)
git push -u origin mainGit will prompt for your username and password. Use your Gluecron password, or better yet a personal access token (tokens start with glc_ and never expire until revoked).
4. Clone an existing repo
git clone https://gluecron.com/you/my-project.git
cd my-project5. Switch to SSH (recommended)
HTTPS is fine for one-off clones. For daily use, SSH is smoother — no password prompts.
- Copy your public key:
cat ~/.ssh/id_ed25519.pub - Paste it at /settings/keys and save.
- Re-clone with the SSH URL:
git clone git@gluecron.com:you/my-project.git
6. Import from GitHub
Already have repos on GitHub? Visit /import, paste the GitHub URL (public or private), and Gluecron mirrors the full history, branches, and tags in one shot. Subsequent pushes go to Gluecron directly.
What happens after push?
Every push to the default branch triggers the post-receive hook:
- GateTest scan — checks the diff for leaked secrets, dependency advisories, and policy violations. Results appear on the commit page within seconds.
- AI review — if the push targets an open PR, the AI reviewer comments on changed files automatically.
- Workflow runs — any
.gluecron/workflows/*.ymlfiles with apushtrigger fire immediately. - Webhooks — registered webhook URLs receive a
pushevent payload within ~1 second.