Skip to content

How to Work

Vinicius Morais Dutra edited this page Feb 16, 2022 · 5 revisions

Branch explain:

  • Main <---- Stable
  • Develop <---- Development
  • gh-pages <---- Deploy

Deploy:

git clone git@github.com:vinicinbgs/vinicinbgs.github.io.git
git checkout develop
git push
git fetch && \
git checkout gh-pages && \
git merge main && \
yarn build && \
cd public && \
git init && \
git remote add origin https://github.com/vinicinbgs/vinicinbgs.github.io.git && \
git push -u origin gh-pages -f

Clone this wiki locally