博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
如何从本地把项目上传到github
阅读量:6332 次
发布时间:2019-06-22

本文共 451 字,大约阅读时间需要 1 分钟。

在本地项目所在目录按以下步骤操作
echo # test >> README.md
git init
git add README.md 

git add . 

git commit -m "first commit" 

git remote add origin https://github.com/qhorse/test.git 
git push -u origin master
$ git remote add origin https://github.com/qhorse/test.git
fatal: remote origin already exists.
解决办法如下:
1、先输入$ git remote rm origin
2、再输入$ git remote add origin https://github.com/qhorse/test.git
就不会报错了!
最后一步上传

 

转载于:https://www.cnblogs.com/qhorse/p/4701363.html

你可能感兴趣的文章
Oracle 10g bigfile表空间、smallfile 表空间
查看>>
Python MySQLdb在Linux下的快速安装
查看>>
RabbitMQ的安装使用
查看>>
[GraphQL] Use GraphQL's Object Type for Basic Types
查看>>
matplotlib绘制动画
查看>>
IOS 通过界面图标启动Web应用 + 全屏应用 + 添加到主屏幕
查看>>
持续集成CI与自动化测试
查看>>
gunicorn 信号处理(SIGHUP,SIGUSR2)
查看>>
pyspark 内容介绍(一)
查看>>
How to Rotate Tomcat catalina.out
查看>>
hadoop_百科
查看>>
Hash冲突的解决方法
查看>>
微信 oauth 授权3
查看>>
类里的通用成员函数应声明为static
查看>>
JS 及时监听事件 和 FormData 对象上传文件的使用
查看>>
Java中的hashCode() 和 equals()的若干问题解答
查看>>
Js正则Replace方法
查看>>
css文件的MIME错误引发的Jquery Mobile绘制错误
查看>>
Python中解决递归限制的问题
查看>>
ProtoBuffer由.proto文件生成.cc/.h
查看>>