章节 ▾
第二版
-
1. 起步
-
2. Git 基础
-
3. Git 分支
-
4. 服务器上的 Git
- 4.1 协议
- 4.2 在服务器上部署 Git
- 4.3 生成 SSH 公钥
- 4.4 架设服务器
- 4.5 Git Daemon
- 4.6 Smart HTTP
- 4.7 GitWeb
- 4.8 GitLab
- 4.9 第三方托管服务
- 4.10 小结
-
5. 分布式 Git
-
A1. 附录 A: Git 在其他环境
- A1.1 图形界面
- A1.2 Visual Studio 中的 Git
- A1.3 Visual Studio Code 中的 Git
- A1.4 IntelliJ / PyCharm / WebStorm / PhpStorm / RubyMine 中的 Git
- A1.5 Sublime Text 中的 Git
- A1.6 Bash 中的 Git
- A1.7 Zsh 中的 Git
- A1.8 PowerShell 中的 Git
- A1.9 小结
-
A2. 附录 B: 在应用程序中嵌入 Git
-
A3. 附录 C: 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