git help
git helpは、Gitコマンドのヘルプを表示するコマンドです。
構文
- (構文)
- git help [サブコマンド] [オプション]
オプション | 説明 |
---|---|
-a | Gitで使える全てのコマンドを表示する |
-g --guide | ヘルプのガイドを表示する |
--help | コマンドのヘルプを表示する |
サンプル
gitで使えるすべてのコマンドを表示する
git help -a
Gitの用語集を表示する
git help glossary
helpコマンドのヘルプを表示する
git help --help
「git branch」コマンドのヘルプを表示する
git help branch
他のコマンドのヘルプを確認するには、branchの箇所を変更してください。
ヘルプのガイドを表示する
git help -g
備考
- コマンドのヘルプはブラウザで表示されます。