🌐

Githubのリポジトリをghqで管理する

2024/07/29に公開

目的

githubのリポジトリをcloneしていくと、管理が煩雑になるので、環境構築の段階で管理できるツールをインストールしておく

インストール

以下のコマンド実行時にunzipがないと怒られたので、先にインストールする必要がある
おそらく、基本的なコマンドをインストールする方法があるんだが、必要なものだけ入れていく

sudo apt insitall unzip

ghqのインストール

asdf plugin add ghq
asdf install ghq latest
asdf global ghq latest

動作確認

$ ghq
NAME:
   ghq - Manage remote repository clones

USAGE:
   ghq [global options] command [command options]

VERSION:
   1.6.2 (rev:d79add2)

AUTHORS:
   motemen <motemen@gmail.com>
   Songmu <y.songmu@gmail.com>

COMMANDS:
   get, clone  Clone/sync with a remote repository
   list        List local repositories
   rm          Remove local repository
   root        Show repositories' root
   create      Create a new repository
   help, h     Shows a list of commands or help for one command

GLOBAL OPTIONS:
   --help, -h     show help
   --version, -v  print the version

Discussion