第一次接触 git 注册完 github 然后在 git 上 push 文件报了个错误找了网上很多方法都不管用.... $ git remote add origin [email protected]:djkloop/githubOneWeb.git fatal: remote origin already exists. $ git push -u origin master fatal: unable to access 'https://github.com/djkloop/githubOneWeb.git/': Couldn't resolve proxy 'http' 前面是报错 443 不知道瞎改了个什么然后就变成 Couldn't resolve proxy 'http'这个错误了.... 希望哪个大牛帮我看下这个该怎么办啊.....
1
kslr 2016-10-21 04:36:14 +08:00 1
这些问题一搜索都是大把答案,你偏偏要浪费你的时间发帖和我的时间回复。
remote origin already exists 既然存在了那就删掉好了 git remote rm origin 检查 ENV 中的 Proxy 并设置为空 |
2
cxbig 2016-10-21 06:13:04 +08:00 1
官方文档有教怎么用,简单的问题 Google 或 Stack Overflow 都能找到。。。
|
3
w99wen 2016-10-21 12:40:47 +08:00
先学学 git 吧。
中文版的 git : http://git.oschina.net/progit/index.html 一般的 git 在项目中使用的一个例子: https://segmentfault.com/q/1010000000430041 先学习吧,上来就瞎搞容易出事。 |
4
w99wen 2016-10-21 12:42:33 +08:00 1
切记:不要乱操作 git 。出了事情锅背不起的。
|