上传项目到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上的主要内容,如果未能解决你的问题,请参考以下文章

上传项目到github上

创建github项目clone到本地并上传到github上简单步骤

使用git将项目上传到github上

将IntelliJ IDEA项目传上传至Github上

关于把本地项目文件上传到github

如何把项目上传到GitHub上