一、代码首次上传
1、登录github系统
2、找到+,点击new repository。进入new repository界面。
3、填写repository name和description(可选),点击create repository按钮。界面跳转,显示仓库地址
本地
1、终端或者git中,cd到项目所在目录
2、输入git init
3、输入git add .
4、输入git commit -m "***"
5、输入git remote add origion 仓库https地址
例如 git remote add origion https://github.com/.....
6、输入git push -u origin master,提示输入github用户名及密码,回车,即可看到提交进度
二、更新代码
终端或git进入,项目所在目录
执行如下命令行:
git add .
git commit -m 'xxx'
git push origin master
输入github用户名及密码
最后,可看到上传进度条
三、忽略node_modules文件夹
创建.gitignore文件(该文件放在项目根级目录下)
在文件中写入如下代码即可:
/node_modules
四、下载其他源代码
在github仓库页面,点击'clone or download'按钮,复制github仓库地址
在终端或git内,输入如下命令即可
git clone github仓库地址
五、变更仓库名称
本地代码变化,提交代码
先git pull,再提交代码一系列命令
六、发布项目
在github仓库页面,点击Settings按钮
鼠标滚动到GitHub Pages一栏,选择Source和Theme
返回Code界面,代码目录内增加_config.yml这个文件,表示项目发布成功
注意:如果是用户和组织机构账户,Source只能选择master branch;如果是github project page账户,Source可以选择master branch、master branch/foder、gh-pages