当前位置:   article > 正文

Git常见错误与操作:error: src refspec master does not match any解决办法_error: remote origin already exists. error: src re

error: remote origin already exists. error: src refspec master does not matc

一、 出现错误 error:src refspec master does not match any
原因分析:
引起该错误的原因是目录中没有文件,空目录是不能提交上去的
解决办法:

$ touch README  
$ git add README  
$ git commit –m’first commit’  
$ git push origin master 
  • 1
  • 2
  • 3
  • 4

(来自:http://www.open-open.com/lib/view/open1366080269265.html)

$ git init  
  • 1

这一步之后创建了一个名为.git的文件夹,不过它在默认状态下是隐藏的,系统将隐藏文件夹显示出来,可以看到有这样一个文件夹。
github上传项目大致流程:

1、 在github上创建项目  
2、 使用$ git clone https://github/xx账号/xx项目.git克隆到本地  
3、 编辑项目  
4$ git add .(将改动添加到暂存区)  
5$ git commit –m”提交说明”  
6$ git push origin 将本地更改推送到远程master分支  
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

这样你就完成了向远程仓库的推送
如果在github的remote上已经有了文件,会出现错误。此时应当先pull一下,即:

$ git pull origin master 
  • 1

然后再进行:

$ git push origin master  
  • 1

二、如果输入$ git remoteadd origin git@github.com:djqiang(github帐号名)/gitdemo(项目名).git
提示出错信息:fatal: remoteorigin already exists.
解决办法如下:

1、先输入$ git remote rmorigin  
    2、再输入$ git remote addorigin git@github.com:djqiang/gitdemo.git 就不会报错了!  
    3、如果输入$ git remote rmorigin 还是报错的话,error: Could not remove config section'remote.origin'. 我们需要修改gitconfig文件的内容 
  • 1
  • 2
  • 3

4、找到你的github的安装路径
5、找到一个名为gitconfig的文件,打开它把里面的[remote “origin”]那一行删掉就好了!
三、如果输入sshTgit@github.comPermissiondenied(publickey).keysshgithub1 ssh-agent,再输入sshadd /.ssh/idkey2sshadd /.ssh/idkeyCouldnotopenaconnectiontoyourauthenticationagent.keyGitGuisshkeysshsshaddusertoken3idrsa.pub git push origin master
提示出错信息:error:failedto push som refs to …….
解决办法如下:

1、先输入$ git pullorigin master //先把远程服务器github上面的文件拉下来  
2、再输入$ git pushorigin master  
3、如果出现报错 fatal:Couldn't find remote ref master或者fatal: 'origin' doesnot appear to be a git repository以及fatal: Could notread from remote repository.  
4、则需要重新输入$ git remoteadd origingit@github.com:djqiang/gitdemo.git  
  • 1
  • 2
  • 3
  • 4

五、Git常见操作
使用git在本地创建一个项目的过程

$ makdir ~/hello-world    //创建一个项目hello-world  
$ cd~/hello-world       //打开这个项目  
$ git init             //初始化   
$ touch README  
$ git add README        //更新README文件  
$ git commit-m 'first commit'     //提交更新,并注释信息“first commit”   
$ git remote add origin git@github.com:defnngj/hello-world.git     //连接远程github项目    
$ git push -u origin master     //将本地项目更新到github项目上去  
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

六、gitconfig配置文件
Git有一个工具被称为git config,它允许你获得和设置配置变量;这些变量可以控制Git的外观和操作的各个方面。这些变量可以被存储在三个不同的位置:
1./etc/gitconfig 文件:包含了适用于系统所有用户和所有库的值。如果你传递参数选项’–system’ 给 git config,它将明确的读和写这个文件。
2.~/.gitconfig 文件 :具体到你的用户。你可以通过传递–global 选项使Git 读或写这个特定的文件。
3.位于git目录的config文件 (也就是.git/config) :无论你当前在用的库是什么,特定指向该单一的库。每个级别重写前一个级别的值。因此,在.git/config中的值覆盖了在/etc/gitconfig中的同一个值。
在Windows系统中,Git在$HOME目录中查找.gitconfig文件(对大多数人来说,位于C:\Documents and Settings\$USER下)。它也会查找/etc/gitconfig,尽管它是相对于Msys 根目录的。这可能是你在Windows中运行安装程序时决定安装Git的任何地方。
七、配置相关信息:
1 当你安装Git后首先要做的事情是设置你的用户名称和e-mail地址。这是非常重要的,因为每次Git提交都会使用该信息。它被永远的嵌入到了你的提交中:

$ git config --global user.name "John Doe"  
$ git config --global user.email johndoe@example.com  
  • 1
  • 2
  • 3

2 你的编辑器(Your Editor)
  现在,你的标识已经设置,你可以配置你的缺省文本编辑器,Git在需要你输入一些消息时会使用该文本编辑器。缺省情况下,Git使用你的系统的缺省编辑器,这通常可能是vi 或者 vim。如果你想使用一个不同的文本编辑器,例如Emacs,你可以做如下操作:

$ git config --global core.editor emacs  
  • 1

3 检查你的设置(Checking YourSettings)
  如果你想检查你的设置,你可以使用 git config –list 命令来列出Git可以在该处找到的所有的设置:

$ git config --list  
  • 1

你也可以查看Git认为的一个特定的关键字目前的值,使用如下命令 git config {key}:

$ git config user.name 
  • 1

4 获取帮助(Getting help)
  如果当你在使用Git时需要帮助,有三种方法可以获得任何git命令的手册页(manpage)帮助信息:
  

$ git help <verb>  
$ git <verb> --help  
$ man git-<verb>
  • 1
  • 2
  • 3

例如,你可以运行如下命令获取对config命令的手册页帮助:

$ git help config 
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/586053
推荐阅读
相关标签
  

闽ICP备14008679号