git help 使い方
利用可能なコマンドの一覧を表示する
git で利用可能なコマンド(add や commit など)の一覧を表示するには
git help -a
とする。
コマンドのヘルプを表示する
個々のコマンドのヘルプは
git help コマンド
で表示する。たとえば、 git のコマンド commit に対するヘルプを見るには
git help commit
とする。man 形式なら
man git-commit
でも表示することができる。
さまざまな形式のヘルプを表示する
git のヘルプはオプションを指定することでで異なる形式のヘルプを表示することができる。
git help -m commit
git help -i commit
git help -w commit
それぞれ
- man 形式
- info 形式
- html 形式
のヘルプを表示する。
参考
- man git-help