Error of Git

简介: <p>    <span style="white-space:pre"></span>本文旨在记录使用git时遇到的各种问题及解决方案,希望更多的人少走弯路。</p> <p></p> <h1><strong>1、eclipse 上传更新的时候出现:cannot open git-receive-pack</strong></h1> <div style="background-co

    本文旨在记录使用git时遇到的各种问题及解决方案,希望更多的人少走弯路。

1、eclipse 上传更新的时候出现:cannot open git-receive-pack


方案1:
可以试试下面的配置
windows-->Preferences-->Team-->Git-->Configuration-->User Settings.然后点Add Entry新建一个键值对,输入http.sslVerify=false
方案2:
重新Commit【虽然并没有增加什么】,再push。

2、cannot open git-upload-pack

首次share代码到github时:
share时配置文件未全部commit,  cannot open git-upload-pack。
试了1的方法,失败;最后断开连接,删除本地仓库后重新share all,成功。
非首次: 断开连接,删除本地仓库,pull到本地,再次commit【如果直接commit此时提交的会覆盖先前提交的】。

3、pull时异常:The current branch is not configured for pull No value for key remote.origin.url found in configuration

解决方案1:
找到当前工程的config文件,E:\WorkSpace\Algorithm\.git\config;
修改内容如下:
[core]
    symlinks = false
    repositoryformatversion = 0
    filemode = false
    logallrefupdates = true
[branch "master"] 
    remote = origin
    merge = refs/heads/master
[remote "origin"] 
    fetch = +refs/heads/*:refs/remotes/origin/*
解决方案2:
Window->Preference->Team->Git->Configuration->Repository Settings->选择当前repository,open,按方案1的内容修改。



目录
相关文章
|
1月前
|
网络安全 开发工具 git
解决fatal:remote error:You can’t push to git://github.com/username/*.g
通过上述诊断与修复步骤,绝大多数的推送错误都能得到有效解决,确保您的Git工作流顺畅无阻。
35 1
|
3月前
|
开发工具 git 索引
$ git revert -m v1.0.21 6003eb5f5b455f0a3dfb74f48f63878e7 error: option `mainline' expect
$ git revert -m v1.0.21 6003eb5f5b455f0a3dfb74f48f63878e7 error: option `mainline' expect
|
2月前
|
编译器 网络安全 开发工具
git学习五:切换本地仓库出现的问题。修改git配置初始化。error:src refspec master does not match any。错误总结,送上几个案例
这篇文章是关于Git使用中遇到的一些问题及其解决方案的总结,包括切换本地仓库时的问题、修改Git初始化配置、以及解决"error: src refspec master does not match any"错误等。
58 0
|
7月前
|
开发工具 git
Git -- 代码上传错误 error: failed to push some refs to ‘git@gitee.com:JMFive/uni-shop2.git‘
Git -- 代码上传错误 error: failed to push some refs to ‘git@gitee.com:JMFive/uni-shop2.git‘
|
7月前
|
网络安全 开发工具 git
git修改提交路径以及强制提交——异常:error: remote origin already exists.与异常:error: failed to push some refs to的解决
git修改提交路径以及强制提交——异常:error: remote origin already exists.与异常:error: failed to push some refs to的解决
83 0
|
6月前
|
开发工具 git
【已解决】error: failed to push some refs to ‘git@github.com:BATdalao/Github-green.git‘
【已解决】error: failed to push some refs to ‘git@github.com:BATdalao/Github-green.git‘
|
6月前
|
开发工具 git
git error 已解决【Another git process seems to be running in this repository, e.g. an editor opened by】
git error 已解决【Another git process seems to be running in this repository, e.g. an editor opened by】
82 2
|
6月前
|
开发工具 git
出现“error: failed to push some refs to ‘https://github.com/****.git‘”,如何解决问题
出现“error: failed to push some refs to ‘https://github.com/****.git‘”,如何解决问题
647 1
|
7月前
|
缓存 开发工具 git
Git Cloning into :error: RPC failed
Git Cloning into :error: RPC failed
99 0
|
7月前
|
开发工具 git
Git:error: remote origin already exists
Git:error: remote origin already exists
138 2