安装git环境后输入指令get update提示Command 'get' not found, but there are 18 similar ones.
时间: 2024-03-23 19:38:58 浏览: 79
当你安装 git 环境后输入 `get update` 指令时,系统会提示 `Command 'get' not found, but there are 18 similar ones.` 这个错误信息。这是因为你打错了指令,正确的指令是 `git` 而不是 `get`。
要解决这个问题,你可以重新输入正确的指令 `git update`,然后执行该指令即可完成更新操作。如果你还没有安装 git,可以通过以下命令在 Ubuntu 中安装 git:
```
sudo apt-get update
sudo apt-get install git
```
安装完成后,你就可以使用 git 命令进行版本管理等操作了。
阅读全文