repo 源代码中的 gitc 文件系统是什么?

问题描述 投票:0回答:2

我使用基本的 repo 命令来下载 Android 源代码。然后决定浏览一下 回购协议的源代码。事情看起来很简单,但事情却很少 我没有找到解释,谷歌搜索也没有帮助。

gitc-init 命令有什么作用?

我使用了 repo init 那么它有什么区别 仓库初始化和仓库 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)

什么是 ia GITC 文件系统? Linux 上可用吗?

git repo
2个回答
2
投票

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


© www.soinside.com 2019 - 2024. All rights reserved.