当前位置: 首页 > 工具软件 > git-issues > 使用案例 >

git Unknown option: -C

楚雪松
2023-12-01

问题现象

[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 ~]#
 类似资料: