Git
章节 ▾ 第二版

1.7 入门 - 获取帮助

获取帮助

如果您在使用 Git 时需要帮助,有三种等效的方法可以获取任何 Git 命令的完整手册页 (manpage) 帮助

$ git help <verb>
$ git <verb> --help
$ man git-<verb>

例如,您可以通过运行以下命令获取 git config 命令的手册页帮助

$ git help config

这些命令非常方便,因为您可以在任何地方访问它们,即使是离线状态。如果手册页和本书还不够,您需要面对面帮助,您可以尝试 Libera Chat IRC 服务器上的 #git#github#gitlab 频道,它们可以在 https://libera.chat/ 找到。这些频道通常有数百人,他们都非常了解 Git,并且经常愿意提供帮助。

此外,如果您不需要完整的 manpage 帮助,只需要快速了解 Git 命令的可用选项,您可以使用 -h 选项请求更简洁的“帮助”输出,例如

$ git add -h
usage: git add [<options>] [--] <pathspec>...

    -n, --dry-run               dry run
    -v, --verbose               be verbose

    -i, --interactive           interactive picking
    -p, --patch                 select hunks interactively
    -e, --edit                  edit current diff and apply
    -f, --force                 allow adding otherwise ignored files
    -u, --update                update tracked files
    --renormalize               renormalize EOL of tracked files (implies -u)
    -N, --intent-to-add         record only the fact that the path will be added later
    -A, --all                   add changes from all tracked and untracked files
    --ignore-removal            ignore paths removed in the working tree (same as --no-all)
    --refresh                   don't add, only refresh the index
    --ignore-errors             just skip files which cannot be added because of errors
    --ignore-missing            check if - even missing - files are ignored in dry run
    --sparse                    allow updating entries outside of the sparse-checkout cone
    --chmod (+|-)x              override the executable bit of the listed files
    --pathspec-from-file <file> read pathspec from file
    --pathspec-file-nul         with --pathspec-from-file, pathspec elements are separated with NUL character
scroll-to-top