4
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

ghqでデフォルトディレクトリを変更する

Posted at

はじめに

ghqはリモートリポジトリを簡単に管理できてとても便利です。
ただ、リポジトリを管理するディレクトリがデフォルトで~/.ghqと隠しフォルダなため、時折不都合があります。
(※ v0.99.0 (2020-01-01)以降はデフォルトが~/ghqへ変更されています。)

なので、デフォルトを~/.ghq~/ghqへ変更します。

やり方

~/.gitconfigを編集することで、デフォルトディレクトリを変更できます。

.gitconfig
[ghq]
	root=~/ghq
	root=~/.ghq

rootでデフォルトディレクトリを変更することができます。
rootは複数設定することができ、ghqがリポジトリを検索する際は、ここでrootに指定されたディレクトリを検索します。
以前~/.ghqにダウンロードしたリポジトリも検索に含める場合、root=~/.ghqも追加しておきます。

参考文献

GitHub - x-motemen/ghq: Remote repository management made easy
Managing your git repositories with ghq - DEV

4
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?