LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

glab-repo

Manage GitLab repositories from the command line

TLDR

Clone a repository
$ glab repo clone [owner/repo]
copy
Create a new repository
$ glab repo create [name]
copy
Fork a repository
$ glab repo fork [owner/repo]
copy
View repository details
$ glab repo view [owner/repo]
copy
Archive repository
$ glab repo archive [owner/repo]
copy
Search for repositories
$ glab repo search [query]
copy
List repositories
$ glab repo list
copy
Delete a repository
$ glab repo delete [owner/repo]
copy

SYNOPSIS

glab repo command [options]

DESCRIPTION

glab repo manages GitLab repositories from the command line. It provides subcommands for cloning, creating, forking, searching, and viewing repositories without leaving the terminal.

PARAMETERS

--public

Create as public repository.
--private
Create as private repository.
--description text
Repository description.
--clone
Clone after forking.
--group name
Create repository in a specific group/namespace.
-y, --yes
Skip confirmation prompts.

SUBCOMMANDS

clone

Clone a repository.
create
Create new repository.
fork
Fork a repository.
view
View repository details.
archive
Download repository archive.
search
Search for repositories.
list
List repositories.
delete
Delete a repository.

SEE ALSO

glab(1), glab-mr(1), glab-issue(1), git-clone(1)

Copied to clipboard
Kai