Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Latest commit

 

History

History

pages

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Building dynflow.github.io

  1. Clone the dynflow.github.io to the public directory
git clone github.com:dynflow/dynflow.github.io public --origin upstream
  1. Add your fork
cd public
git remote add origin github.com:$MYUSERNAME/dynflow.github.io
cd ..
  1. Install the dependencies
bundle install
  1. Make sure the public repository is in sync with upstream
cd public
git fetch upstream master
git reset --hard upstream/master
git clean -f
cd ..
  1. Build new version of the pages
bundle exec jekyll build
  1. Commit and push the updated version
cd public
git add -A
git commit -m Update
git push origin master
  1. Send us a PR