LoginSignup
2
1

More than 5 years have passed since last update.

git > manページのインストール

Last updated at Posted at 2015-04-08

動作確認

CentOS 6.5

$git help help
すると「No manual entry for git-help」となり、gitのmanページが入ってなかったので入れた。

参考1

上記のサイトではmanページの最新バージョン番号を調べてからwgetすることになる。
そうではなく、バージョン番号を調べなくても現在の最新を取得する方法として、以下を行った。

(rootアカウントにて)
$git clone git://git.kernel.org/pub/scm/git/git-manpages.git
$cp -r git-manpages/man1 /usr/local/share/man
$cp -r git-manpages/man5 /usr/local/share/man
$cp -r git-manpages/man7 /usr/local/share/man
$rm -rf git-manpages

これでmanページが見れるようになった。

2
1
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
2
1