Files
oam/knowledge base/gitlab/glab.md
2025-03-26 18:37:09 +01:00

1.9 KiB

GitLab CLI

The glab utility is a CLI tool for GitLab.

Available for repositories hosted on GitLab.com, GitLab Dedicated, and GitLab Self-Managed.
Supports multiple authenticated GitLab instances.
Automatically detects the authenticated hostname from the remotes available in one's working Git directory.

  1. TL;DR
  2. Further readings

TL;DR

Setup
# Install.
brew install 'glab'

# Start interactive configuration.
glab auth login

# Load shell completions.
glab completion -s 'fish' > "$HOME/.config/fish/completions/glab.fish"
source <(glab completion -s 'bash')

Global configuration file: ~/.config/glab-cli/config.yml.
Repository-specific configuration file: .git/glab-cli/config.yml
They contain tokens in plaintext.

Usage
# Get help.
glab --help
glab user --help
glab release view --help

# Make changes to the configuration.
glab config edit
glab config edit --local
glab config set 'host' 'gitlab.example.org' --global
glab config set 'git_protocol' 'ssh' --host 'gitlab.example.org'
glab config set 'api_protocol' 'https' -h 'gitlab.example.org'
glab config set 'editor' 'vim'
glab config set 'token' 'xxxxx' -h 'gitlab.com'
glab config set 'check_update' 'false' --global

# Clone repositories.
glab repo clone 'someGroup/someRepo'

# List issues.
glab issues list
glab issues list --repo 'someGroup/someNamespace/someRepo'

# List Merge Requests.
glab mr list
glab mr list --repo 'someGroup/someNamespace/someRepo'

Further readings