glab repo
Work with GitLab repositories and projects.
Quick start
# Clone a repository
glab repo clone group/project
# Clone the project's wiki repository
glab repo clone --wiki group/project
# Create new repository
glab repo create my-new-project --public
# Fork a repository
glab repo fork upstream/project
# View repository details
glab repo view
# Add a Git remote from a GitLab project reference
glab repo remote add group/project --name upstream
# Prune local branches whose MRs have been merged
glab repo prune --dry-run
glab repo prune --yes
# Search for repositories
glab repo search "keyword"
Common workflows
Starting new project
Create repository:
glab repo create my-project \ --public \ --description "My awesome project" # Create with README glab repo create my-project \ --public \ --readmeNote:
glab repo create --readmeclones the newly created repository instead of usinggit init, ensuring a clean local copy with the initial README.A path containing nested groups preserves the complete namespace. For example,
glab repo create group/subgroup/my-projectcreatesmy-projectundergroup/subgroup, not only the final subgroup.Clone locally (if not using --readme):
glab repo clone my-username/my-project cd my-projectTo clone only the GitLab wiki, pass
--wikiwith one project reference. It cannot be combined with group-wide--groupcloning, and it fails clearly when the project's wiki is disabled.glab repo clone --wiki group/projectSSH configurations that map
gitlab.comto the officialaltssh.gitlab.comendpoint are recognized as GitLab.com rather than as a separate self-managed host.For self-managed hosts that include a port, glab keys subfolder config lookup on the full host with port. If a repository resolves to the wrong API host or misses a configured subfolder, verify the exact host key in the config file at
glab config pathincludes the port.Initialize with content:
echo "# My Project" > README.md git add README.md git commit -m "Initial commit" git push -u origin main
Forking workflow
Fork upstream repository:
glab repo fork upstream-group/projectClone your fork:
glab repo clone my-username/project cd projectAdd upstream remote:
glab repo remote add upstream-group/project --name upstreamglab repo remote add <namespace/project>resolves a GitLab project reference and adds the appropriate Git remote URL. The default remote name is the first path component (upstream-groupin the example); override it with--name/-n. Use--protocol ssh|https/-pto override thegit_protocolconfig.glab repo remote add alice/my-project glab repo remote add alice/my-project --name upstream glab repo remote add group/subgroup/my-project --protocol sshKeep fork in sync:
git fetch upstream git merge upstream/main
Automated sync:
Use the sync script bundled with this skill under scripts/ for one-command
fork updates (paths below are relative to the skill's own directory):
scripts/sync-fork.sh main
scripts/sync-fork.sh develop upstream
This automatically: fetches → merges → pushes to origin.
Repository management
View repository info:
glab repo view
glab repo view group/project # Specific repo
glab repo view --web # Open in browser
Update repository settings:
glab repo update \
--description "Updated description" \
--default-branch develop
Archive repository:
glab repo archive download main # Downloads .tar.gz
glab repo archive download main --format zip
Transfer to new namespace:
glab repo transfer my-project --target-namespace new-group
Delete repository:
glab repo delete group/project
Local branch pruning
glab repo prune deletes local Git branches whose GitLab merge requests have been merged. It never deletes remote branches on GitLab, and it skips protected branches, the default branch, and the branch currently checked out.
# Preview branches that would be deleted
glab repo prune --dry-run
# Delete branches after confirmation
glab repo prune
# Delete without confirmation after reviewing the dry run
glab repo prune --yes
# Exclude additional branches by exact name or glob; comma-separate or repeat
glab repo prune --exclude wip-*,demo-branch
# Faster local-Git detection; misses squash/rebase merges that are not fast-forward ancestry
glab repo prune --merged
Prefer the default GitLab-backed mode for correctness: it queries merge requests for each local branch and handles squash/rebase merge cases better than plain git branch --merged. Use --merged only when the faster fast-forward-only check is acceptable.
Member management
List collaborators:
glab repo members list
Add member:
glab repo members add @username --access-level maintainer
Remove member:
glab repo members remove @username
Update member access:
glab repo members update @username --access-level developer
Bulk operations
Clone all repos in a group:
glab repo clone -g my-group
Search and clone:
glab repo search "api" --per-page 10
# Then clone specific result
glab repo clone group/api-project
List your repositories:
glab repo list
glab repo list --member # Only where you're a member
glab repo list --mine # Only repos you own
Troubleshooting
Clone fails with permission error:
- Verify you have access:
glab repo view group/project - Check authentication:
glab auth status - For private repos, ensure you're logged in with correct account
Fork operation fails:
- Check if fork already exists in your namespace
- Verify you have permission to fork (some repos disable forking)
- Try with explicit namespace:
glab repo fork --fork-path username/new-name
Transfer fails:
- Verify you have owner/maintainer access
- Check target namespace exists and you have create permissions
- Some projects may have transfer protections enabled
Group clone fails:
- Verify group exists and you have access
- Check you have enough disk space
- Large groups may time out - clone specific repos instead
Related Skills
Authentication and access:
- See
glab-authfor login and authentication setup - See
glab-ssh-keyfor SSH key management - See
glab-deploy-keyfor deployment authentication
Project configuration:
- See
glab-configfor CLI defaults and settings - See
glab-variablefor CI/CD variables
Fork synchronization:
- Script:
scripts/sync-fork.shautomates upstream sync
Structured output
glab repo contributors supports --output json / -F json for structured output, which is useful for agent automation.
# List contributors with JSON output
glab repo contributors --output json
glab repo contributors -F json
Command reference
For complete command documentation and all flags, see references/commands.md.
Available commands:
clone- Clone repository or groupcreate- Create new projectfork- Fork repositoryview- View project detailsupdate- Update project settingsdelete- Delete projectsearch- Search for projectslist- List repositoriestransfer- Transfer to new namespacearchive- Download repository archivecontributors- List contributorsmembers- Manage project membersmirror- Configure repository mirroringremote- Manage Git remotes using GitLab project referencesprune- Delete local branches whose GitLab merge requests are mergedpublish- Publish project resources