Skip to content

Latest commit

 

History

History
36 lines (30 loc) · 758 Bytes

README.md

File metadata and controls

36 lines (30 loc) · 758 Bytes

front-end-practice

安畅前端实践

贡献方法

  1. Fork 主项目到个人仓库
  2. 本地仓库建立两个远程,分别对应主项目及个人项目。
  git remote add upstream git@github.com:anchnet/front-end-practice.git
  git remote add origin git@github.com:<my_name>/front-end-practice.git
  1. 开发流程
  # 拉取主项目最新代码
  git pull upstream master

  # 启动本地服务器
  hexo server
  #
  npm run server

  # 新建文章
  hexo new 'title'
  1. 发布流程
  # 生成静态文件(注意:发布前只需要 generate 不需要 deploy)
  hexo generate
  #
  npm run build

  # 推到个人项目远程
  git push origin master
  1. 向主项目发起 pull request