不使用clone,将本地项目push到github上的几个步骤
1.在自己的github上创建一个新仓库
2.进入本地项目仓库文件夹中,右键“Git Bash Here”进入命令行,git init (初始化,将本地仓库所在文件夹变成git管理的仓库)
3.会发现此时文件夹新生成一个.git文件夹
4.git add . (添加到仓库)
5.git commit -m "first commit" (commit到仓库)
6.将远程github仓库的地址粘贴过来, git remote add origin https://github.com/xxx/xxx.git (将本地仓库与远程仓库联系起来)
7.git push -u origin master (push到远程仓库),才是彻底将本地项目上传到github上,就可以在github上查看啦!
-------自学记录。欢迎指出错误,其它勿扰。-------