MichaelBlog

double i = Double.MAX_VALUE; while(i == i + 1){ System.out.print ("学无止境");};

导航

Git:常用操作和问题

提交操作

//配置全局的 用户名以及邮箱
git config --global user.name   xxx
git config --global user.email   xxx@xx.com
 
//查看配置
git config --list
 
 
//初始化仓库
git init
 
//添加文件到版本库
git add
git commit
 
 
//查看仓库状态
git status

常见错误

fatal: remote origin already exists.

解决办法:

  1. 先输入$ git remote rm origin(删除关联的origin的远程库)

  2. 再输入$ git remote add origin git@github.com:(github名)/(git项目名).git 就不会报错了!

  3. 如果输入$ git remote rm origin 还是报错的话,error: Could not remove config section ‘remote.origin’. 我们需要修改gitconfig文件的内容

  4. 找到你的github的安装路径,我的是C:\Users\ASUS\AppData\Local\GitHub\PortableGit_ca477551eeb4aea0e4ae9fcd3358bd96720bb5c8\etc

  5. 找到一个名为gitconfig的文件,打开它把里面的[remote “origin”]那一行删掉就好了!

error: src refspec master does not match any. error: failed to push some refs to
原因:

  1. 本地仓库为空目录

  2. 本地仓库add后未commit

  3. git init 初始化失败

解决办法:

命令 git add + 文件名,把文件添加到仓库就行 ,最后push一下。

error: key does not contain a section: –-global

解决办法:

git config --global user.email

忘记ssh密码重新生成ssh公钥

ssh-keygen -t rsa -b 4096 -C "youremail@xx.com"

posted on 2022-04-16 09:47  Michael_chemic  阅读(34)  评论(0编辑  收藏  举报