git错误
Posted cleanwaterjx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git错误相关的知识,希望对你有一定的参考价值。
1.输入 $ git push -u origin master 命令出现下面错误
$ git push -u origin master
fatal: 'origin' does not appear to be a git repository
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the reposito
解决办法
$ git remote add [email protected]:github帐号名/项目名.git
2.输入 $ git add . 出现下面错误
warning: LF will be replaced by CRLF in vue.js.
The file will have its original line endings in your working directory.
解决办法
$ git config --global core.autocrlf false
以上是关于git错误的主要内容,如果未能解决你的问题,请参考以下文章
VSCode自定义代码片段15——git命令操作一个完整流程
GitGit 分支管理 ( 克隆远程分支 | 克隆 master 分支 git clone | 查看远程分支 git branch -a | 克隆远程分支 git checkout -b )(代码片段