I want to create a github page
My sites are in the master
branch. My actual development is in the development
branch.
So my workflow simplified is:
git checkout develop
# edit & commit
gulp build-prod
# push
gulp
creates a dist
folder which contains all files which shall be in the master
branch.
So my question is: Is it possible to treat a subfolder of my repo as a branch?
If this is not possible - what would be a good way to work around this problem?