1 使用场景
本地有一个小项目,想把它上传到github,以备日后查看
2 在github上新建一个代码仓库
新建仓库的界面如下:
3 按照第一个提示操作
再上传之前,可以自行配置一下.ignore文件,设置忽略上传的文件
4 异常情况
如果出现如下报错信息:
Hao:FlowLayoutDemo hao$ git push -u origin master
remote: Invalid username or password.
fatal: Authentication failed for 'https://github.com/haonpu/FlowLayoutDemo.git/'
Hao:FlowLayoutDemo hao$
Hao:FlowLayoutDemo hao$ ssh -T git@github.com
Warning: Permanently added the RSA host key for IP address '52.74.223.119' to the list of known hosts.
git@github.com: Permission denied (publickey).
可能是因为没有设置token
解决方案参考这里