google 的回购工具的完整文档在哪里?
Where is full documentation for google's repo tool?
我能找到的是:
https://source.android.com/source/using-repo.html
但他们似乎专注于简单性和可访问性,而不是对人和 vim.
的能力进行深入、完整的记录。
例如,
我想看看 repo sync 命令的每个可能选项,以及它的作用,包括如果您(有意或无意)不输入整个 --thin ,它是否接受部分明确的标志名称。 :)
repo 的源代码可以在这里找到:https://android.googlesource.com/tools/repo。
我用 google 找到了 google repo source
已更新以更好地回答您的问题:
尝试
repo help
要获取有关命令的更多信息并查看它需要哪些参数:
repo help sync
我还在此处找到文档:http://manpages.ubuntu.com/manpages/xenial/man1/repo.1.html
您可以通过键入
找到许多 Linux 命令的文档
<command> help
或
man <command>
其中 <command>
是您需要更多信息的实际命令。
我能找到的是:
https://source.android.com/source/using-repo.html
但他们似乎专注于简单性和可访问性,而不是对人和 vim.
例如,
我想看看 repo sync 命令的每个可能选项,以及它的作用,包括如果您(有意或无意)不输入整个 --thin ,它是否接受部分明确的标志名称。 :)
repo 的源代码可以在这里找到:https://android.googlesource.com/tools/repo。
我用 google 找到了 google repo source
已更新以更好地回答您的问题:
尝试
repo help
要获取有关命令的更多信息并查看它需要哪些参数:
repo help sync
我还在此处找到文档:http://manpages.ubuntu.com/manpages/xenial/man1/repo.1.html
您可以通过键入
找到许多 Linux 命令的文档<command> help
或
man <command>
其中 <command>
是您需要更多信息的实际命令。