[root@centos7 ~]# git -C
Unknown option: -C
usage: git [--version] [--help] [-c name=value]
[--exec-path[=<path>]] [--html-path] [--man-path] [--info-path]
[-p|--paginate|--no-pager] [--no-replace-objects] [--bare]
[--git-dir=<path>] [--work-tree=<path>] [--namespace=<name>]
<command> [<args>]
[root@centos7 ~]#
因为git版本比较低,需要大于1.8.5
详细信息请见https://github.com/tensorflow/tensorflow/issues/5154
我的版本为1.8.3
[root@centos7 ~]# git version
git version 1.8.3.1
升级git版本
[root@centos7 ~]# git version
git version 2.31.1
[root@centos7 ~]# git -C
没有为 -C 提供目录
usage: git [--version] [--help] [-C <path>] [-c <name>=<value>]
[--exec-path[=<path>]] [--html-path] [--man-path] [--info-path]
[-p | --paginate | -P | --no-pager] [--no-replace-objects] [--bare]
[--git-dir=<path>] [--work-tree=<path>] [--namespace=<name>]
[--super-prefix=<path>] [--config-env=<name>=<envvar>]
<command> [<args>]
[root@centos7 ~]#