上传项目到github上
Posted zhaoqingyue
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了上传项目到github上相关的知识,希望对你有一定的参考价值。
1. 登录github后,在主页new repository一个新项目,填写Repository name和Description
2. Create repository后生产git地址https://github.com/username/xxx.git
3. 在要上传的工程master下(工程里面目录),右键—>GitBash
4. git init
5. git add . -A
6. git commit -m "更新说明"
7. git remote add origin https://github.com/username/xxx.git
8. git push -u origin master
github 账号与密码:
username: xxxx
pwd: xxxx
以上是关于上传项目到github上的主要内容,如果未能解决你的问题,请参考以下文章