什么是gitc文件系统?它与代码仓库的源代码有什么关系?

8
我使用基本的仓库命令下载了Android源代码。然后决定浏览repo的源代码。看起来很简单,但有几个问题我没有找到解释,并且谷歌搜索也没有帮助。
gitc-init命令是做什么用的?
我使用了repo init,那么repo init和repo gitc-init之间有什么区别?
在repo的源码中,这个函数...
def gitc_parse_clientdir(gitc_fs_path):
  """Parse a path in the GITC FS and return its client name.

  Args:
    gitc_fs_path: A subdirectory path within the GITC_FS_ROOT_DIR.

  Returns:
    The GITC client name.
  """

如何使用gitc客户端?

_Init函数中

  try:
    if gitc_init:
      gitc_manifest_dir = get_gitc_manifest_dir()
      if not gitc_manifest_dir:
        print('fatal: GITC filesystem is not available. Exiting...',
              file=sys.stderr)
        sys.exit(1)

什么是GITC文件系统?它是否可用于Linux?


似乎是谷歌内部用于管理Android源代码的工具。 - paiv
1个回答

0

gitc逻辑仅供Google内部员工使用,这就是为什么它不会显示在任何正常输出中的原因。它也已经被弃用并且不受支持,希望有一天我们能够删除它。


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接