红联Linux门户
Linux帮助

Linux下往github上传项目

发布时间:2017-02-16 09:40:48来源:linux网站作者:懒惰的gler
1.进入GitHub官网(https://github.com/)注册账号并激活。
 
2.登录github账号后创建项目仓库,点击new repository,在Repository name填入项目仓库名,如JavaTest,其与你要导入的项目名称一致,点击Create repository完成创建。
Linux下往github上传项目
Linux下往github上传项目
Linux下往github上传项目
 
3.进入Linux系统,打开终端,进入到项目的目录,如笔者将项目放在Desktop目录下的。
cd myweb
Linux下往github上传项目
 
4.将本地项目纳入Git版本管理,代码中“ ”中的内容随意,只是一些说明。
git init
git add -A
git commit -m "Initial commit"
Linux下往github上传项目
 
5.将项目推送到github上,其中username为你的用户名,myweb为项目名,后面的链接相当于下图的链接,可从github获得。
Linux下往github上传项目
git remote add origin https://github.com/<username>/myweb.git
git push -u origin master
然后输入github的用户名(不是邮箱)和密码即可。
Linux下往github上传项目
 
6.打开自己的github主页,查看其中的项目,发现已经上传成功。
 
本文永久更新地址:http://www.linuxdiyf.com/linux/28444.html