报错:fatal: couldn't find remote ref master 解决:使用以下命令 git pull origin main 替代报错命令: git pull origin master…
fatal: Couldn't find remote ref master 翻译过来就是:致命的:无法找到远程参考主,也就是报错的意思.错误的提示内容意思是找不到需要连接的对象. 解决方法有以下几种: 0.如果是新建的仓库( repositories )的话在pull代码的时候,出现这个提示,可以忽略不计,直接提交就可以. 1.检查本地GIT的配置 git config user.name/git config --global user.name git config user.email/…
情景再现 远程新建仓库,然后本地 git bash执行以下代码 git init git add . git commit -m 'xxx' git remote add origin https://username@xxx.com/xxx.git git push 在执行git push的时候出现" The current branch master has no upstream branch."问题的原因是没有将本地的分支与远程仓库的分支进行关联,如图  对应的中文意思: fa…
参考了两种方法: 1. 解决fatal: unable to connect to github.com问题 http://blog.csdn.net/greenqingqingws/article/details/11808745原因:需要用https才能读到数据解决方法:输入命令git config --global url."https://".insteadOf git:// 2. 使用github出了些问题?fatal: unable to access;Failed con…
git报错:'fatal:remote origin already exists'怎么处理?附上git常用操作以及说明.   git添加远程库的时候有可能出现如下的错误, 怎么解决? 只要两步: 1.先删除 1 $ git remote rm origin 2.再次执行添加就可以了. ----------------------------------------------git常用操作------------------------------------------------ 说明,以…
输入: git pull origin master git报错提示 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 repository exists.   在网上找到的解决办法:重新输入一次: git remote add…
本地仓库代码(git push)上传git仓库报错: fatal: No configured push destination. Either specify the URL from the command-line or configure a remote repository using git remote add <name> <url> and then push using the remote name git push <name> 解决办法: 在…
在做远程仓库调试阶段,突然发现修改后的项目无法push了: 如果输入$ git remote add origin git@github.com:djqiang(github帐号名)/gitdemo(项目名).git 提示出错信息:fatal: remote origin already exists. 检查发现远程仓库由于项目的需要被手动重命名了: 因此需要重新关联下, 解决办法如下: 1.先输入$ git remote rm origin 2.再输入$ git remote add orig…
配置MySQL主从复制报错 ``` Last_IO_Error: Fatal error: The slave I/O thread stops because master and slave have equal MySQL server ids; these ids must be different for replication to work (or the --replicate-same-server-id option must be used on slave but thi…
是因为本地分支和远程分支没有建立联系  (使用git branch -vv  可以查看本地分支和远程分支的关联关系)  .根据命令行提示只需要执行以下命令即可git branch --set-upstream-to=origin/远程分支的名字 本地分支的名字 git无法pull仓库refusing to merge unrelated histories git pull origin master ----allow-unrelated-histories…