github常见问题【转自百度知道】

1 git config --global user.name "Your Real Name" 2 git config --global user.email [email protected]

git init

git add .

git commit -m ‘Test‘git remote add origin [email protected]:XXX/XXX.git 3 git push -u origin master

一些可能遇到的问题解决:如果输入$ git remote add origin [email protected]:djqiang(github帐号名)/gitdemo(项目名).git提示出错信息:fatal: remote origin already exists.解决办法如下:1、先输入$ git remote rm origin2、再输入$ git remote add origin [email protected]:djqiang/gitdemo.git 就不会报错了!3、如果输入$ git remote rm origin 还是报错的话,error: Could not remove config section ‘remote.origin’. 我们需要修改gitconfig文件的内容4、找到你的github的安装路径,我的是C:\Users\ASUS\AppData\Local\GitHub\PortableGit_ca477551eeb4aea0e4ae9fcd3358bd96720bb5c8\etc5、找到一个名为gitconfig的文件,打开它把里面的[remote "origin"]那一行删掉就好了!如果输入$ ssh -T [email protected]出现错误提示:Permission denied (publickey).因为新生成的key不能加入ssh就会导致连接不上github。解决办法如下:1、先输入$ ssh-agent,再输入$ ssh-add ~/.ssh/id_key,这样就可以了。2、如果还是不行的话,输入ssh-add ~/.ssh/id_key 命令后出现报错Could not open a connection to your authentication agent.解决方法是key用Git Gui的ssh工具生成,这样生成的时候key就直接保存在ssh中了,不需要再ssh-add命令加入了,其它的user,token等配置都用命令行来做。3、最好检查一下在你复制id_rsa.pub文件的内容时有没有产生多余的空格或空行,有些编辑器会帮你添加这些的。如果输入$ git push origin master提示出错信息:error:failed to push som refs to …….解决办法如下:1、先输入$ git pull origin master //先把远程服务器github上面的文件拉下来2、再输入$ git push origin master3、如果出现报错 fatal: Couldn’t find remote ref master或者fatal: ‘origin’ does not appear to be a git repository以及fatal: Could not read from remote repository.

注意:在将数据push到远程服务器之前,需要在github上手动建立一个repository,否则老是会报fatal: Could not read from remote repository.的错误
4、则需要重新输入$ git remote add [email protected]:djqiang/gitdemo.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 [email protected]:defnngj/hello-world.git     //连接远程github项目$ git push -u origin master     //将本地项目更新到github项目上去
时间: 2024-10-17 16:19:55

github常见问题【转自百度知道】的相关文章

[tools]hugo&github构建静态网站/百度统计

hugo/github构建网站基本原理 1.hugo是一个静态化的工具,你写md,然后他把md转换成对应样式的html, 2.并给html嵌入百度统计的script.然后你将html放到github上,github可以支持静态博客.你就拥有了自己的博客 3.用户访问时,触发js统计代码,上报给百度统计. 安装配置hugo+githubpage站点 老宋专门写了一本关于这个的书 参考 这个文档有个坑,里面访问的url改成https的.如果按照文档的http会导致发到github上后样式加载不成功.

flask+nginx+gunicorn+github+ubuntu部署到百度云

基于Ubuntu / 16.04 LTS amd64 (64bit) 的部署 shh root 登录 1. 安装python,pip,virtualenv 一般来说ubuntu里面已经自带了python.python的包管理工具有2个(easy_install,pip),前者是以前的,后者是用的比较多. apt-get install pipapt-get install virtualenv 2. 建立一个文件目录,用来放从git上传过来的项目. 1.安装git apt-get install

iOS之github第三方框架(持续更新)

*:first-child { margin-top: 0 !important; } body > *:last-child { margin-bottom: 0 !important; } a { color: #4183C4; } a.absent { color: #cc0000; } a.anchor { display: block; padding-left: 30px; margin-left: -30px; cursor: pointer; position: absolute

Ionic 调用百度插件和使用百度地图

ionic 中ngcordova提供基于谷歌地图定位功能 下面开启项目之旅 1.新建项目 ionic start Ionic_barcode blank cd Ionic_barcode ionic platform add Android 2. 添加百度地图定位插件 cordova plugin add https://github.com/mrwutong/cordova-qdc-baidu-location 百度地图定位插件地址: https://github.com/mrwutong/c

github+hexo搭建自己的博客网站(六)进阶配置(搜索引擎收录,优化你的url)

详细的可以查看hexo博客的演示:https://saucxs.github.io/ 绑定了域名: http://www.chengxinsong.cn hexo+github博客网站源码(可以clone,运行,看到博客演示.觉得可以给颗星星):https://github.com/saucxs/hexo-blog-origin.git 一.搜索引擎收录 1.验证网站所有权 登录百度站长平台:http://zhanzhang.baidu.com,只要有百度旗下的账号就可以登录,登录成功之后在站点

乐卡上海网点地图制作心得 | 百度地图API使用心得

前言 事情的起因是我的爱人喜欢收集一些美丽的乐卡(明信片的一种,正面是美丽壮阔的风景照).作为一个坚实的后盾自然要支持她!于是我经常借着午休穿梭在大街小巷,凭借乐卡官方提供的乐卡网点地址进行寻找并取卡.在搜寻过程中,萌生了制作一张基于那些地址的专门戳点地图的想法.期间也看到蚂蚁家制作的北京乐卡地图使用的是百度地图API,但是该网页仅能运行于PC端,手机打开巨卡.刚好我的github博客站最近配置完成了,准备自己也写一个. 材料单 百度开放平台账号一个 百度开放平台浏览器端启用了Javascrip

Git版本控制教程 - Github的使用

http://blog.csdn.net/pipisorry/article/details/45532883 关注别人的项目(变化或者说是收藏) 进入别人的项目 将上图中的unwatch改为watch 这样在自己的github上就可以通过进入看到自己关注的项目 使用GitHub-参与开源项目 我们一直用GitHub作为免费的远程仓库,如果是个人的开源项目,放到GitHub上是完全没有问题的.其实GitHub还是一个开源协作社区,通过GitHub,既可以让别人参与你的开源项目,也可以参与别人的开

百度云满速下载原理与方法

前言 今天给大家介绍一款好用的开源工具proxyee-down,之前已经测试了好多天了,挺强大,可以满速下载百度云里的文件,而且不用输入账号,因此不存在盗号的可能性. github地址: https://github.com/proxyee-down-org/proxyee-down 百度云下载地址: https://pan.baidu.com/share/init?surl=fgBnWJ0gl6ZkneGkVDIEfQ ,密码d92x. 百度大文件破解 1.限速与封号 使用过百度云的朋友肯定知

Android集成讯飞语音、百度语音、阿里语音识别

项目实践:https://blog.csdn.net/Jsagacity/article/details/80094164 demo下载地址:https://fir.im/jy28 demo源码:https://github.com/wapchief/android-CollectionDemo 百度网盘:https://pan.baidu.com/s/1gvoTlcddstxb7tyS8MvWzw密码:l5gd 2 科大讯飞  https://www.xfyun.cn/ 网友使用1https: