IT系/リファレンス/Gitコマンド/git_help

Last-modified: 2020-06-11 (木) 04:07:14

git help

Gitコマンドのヘルプを表示するコマンド。

用例

  • Gitで使えるすべてのコマンドを表示
    git help -a
  • Gitの用語集を表示
    git help glossary
  • helpコマンドのヘルプを表示
    git help --help
  • 「git branch」コマンドのヘルプを表示
    git help branch
  • ヘルプのガイドを表示
    git help -g

書式

git help [サブコマンド] [options]

公式によると以下の通り。

git help [-a|--all [--[no-]verbose]] [-g|--guide]
         [-i|--info|-m|--man|-w|--web] [COMMAND|GUIDE]

options

/xxxx

etc.

説明

Gitコマンドのヘルプを表示するコマンド。

関連

  • なし

参考リンク

その他メモ

なし。