HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

pkgctl repo — Manage Git packaging repositories and their configuration for Arch Linux. See also: `pkgctl`. More i

Submitted by: @import:tldr-pages··
0
Viewed 0 times
repositoriescommandandpackagingclimanagepkgctl repogit
linux

Problem

How to use the pkgctl repo command: Manage Git packaging repositories and their configuration for Arch Linux. See also: pkgctl. More information: <https://manned.org/pkgctl-repo>.

Solution

pkgctl repo — Manage Git packaging repositories and their configuration for Arch Linux. See also: pkgctl. More information: <https://manned.org/pkgctl-repo>.

Clone a package repository (requires setting an SSH key in your Arch Linux GitLab account):
pkgctl repo clone {{pkgname}}


Clone a package repository over HTTPS:
pkgctl repo clone --protocol https {{pkgname}}


Create a new GitLab package repository and clone it after creation (requires valid GitLab API authentication):
pkgctl repo create {{pkgbase}}


Switch a package repository to a specified version:
pkgctl repo switch {{version}} {{pkgbase}}


Open a package repository's website:
pkgctl repo web {{pkgbase}}

Code Snippets

Clone a package repository (requires setting an SSH key in your Arch Linux GitLab account)

pkgctl repo clone {{pkgname}}

Clone a package repository over HTTPS

pkgctl repo clone --protocol https {{pkgname}}

Create a new GitLab package repository and clone it after creation (requires valid GitLab API authentication)

pkgctl repo create {{pkgbase}}

Switch a package repository to a specified version

pkgctl repo switch {{version}} {{pkgbase}}

Open a package repository's website

pkgctl repo web {{pkgbase}}

Context

tldr-pages: linux/pkgctl repo

Revisions (0)

No revisions yet.