E:\Two\pythonProject1\pythonProject\pythonProject\LitemallTest>git remote add origin <https://gitee.com/cao-yi-77/shixun2.git> 命令语法不正确。
时间: 2023-07-21 10:52:16 浏览: 165
解决Unable to access 'https://gitee.com/自己的项目/': Could not resolve host: gitee.com问题
这个命令的语法不正确,正确的语法应该是:
```
git remote add origin <远程仓库的地址>
```
你需要将 `<远程仓库的地址>` 替换成你要添加的远程仓库的地址。例如,如果你要将本地仓库连接到 Gitee 上的一个名为 `shixun2` 的远程仓库,命令应该是:
```
git remote add origin https://gitee.com/cao-yi-77/shixun2.git
```
阅读全文