Git学习

使用git遇到的问题

Error:fatal: Unable to find remote helper for 'https' ,如何解决?

Solution:关于此问题的解答——Stackoverflow

究其原因是因为没有安装curl-devel,用yum安装好后再手动安装一次git。

1
2
3
4
5
6
~ yum install curl-devel
#进入到git目录再重新手动编译安装一次git
~ cd /root/git-2.10.1
~ autoconf #自动配置
~ ./configure
~ make && make install

Error: 无法推送一些引用到。。。。

pelican error:无法推送一些引用到“。。。。”

提示:更新被拒绝,因为远程版本库包含您本地尚不存在的提交。这通常是因为另外

提示:一个版本库已向该引用进行了推送。再次推送前,您可能需要先整合远程变更 ​

提示:(如 ‘git pull …’)。​​​ ​

提示:详见 ‘git push – help’ 中的 ‘Note about fast-forwards’ 小节。

Solution: git push -u origin +master 强行更新。待研究

git 提示: fatal : Unable to find remote helper for 'http'

Solution: 是git安装不完全的造成的。Centos下:yum -y install git-core gitk git-gui

Error: git commit to master error please tell me who you are

1
2
3
4
5
6
*** Please tell me who you are.
Run
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
to set your account's default identity.
blah blah blah

Solution: 按照它的提示操作就行了

1
2
3
4
# github绑定的邮箱或者我用的Coding绑定的账号
~ git config --global user.email "you@example.com"
# 换成你的GitHub的名字类似的也可以是Coding上的名字
~ git config --global user.name "Your Name"
© 2019 Forfly All Rights Reserved. 本站访客数人次 本站总访问量
Theme by hiero