https://www.kikk.be/2017/en/home
http://www.espn.com/espn/feature/story/_/id/19742921/espn-body-issue-2017#!
Sometimes you want to have a subdirectory on the master branch be the root directory of a repository’s gh-pages branch. This is useful for things like sites developed with Yeoman, or if you have a Jekyll site contained in the master branch alongside the rest of your code.
For the sake of this example, let’s pretend the subfolder containing your site is named dist.
Remove the dist directory from the project’s .gitignore file (it’s ignored by default by Yeoman).
| git checkout --orphan newBranch | |
| git add -A # Add all files and commit them | |
| git commit | |
| git branch -D master # Deletes the master branch | |
| git branch -m master # Rename the current branch to master | |
| git push -f origin master # Force push master branch to github | |
| git gc --aggressive --prune=all # remove the old files |
| var gulp = require('gulp'), | |
| gutil = require('gulp-util'), | |
| sass = require('gulp-sass'), | |
| csso = require('gulp-csso'), | |
| uglify = require('gulp-uglify'), | |
| jade = require('gulp-jade'), | |
| concat = require('gulp-concat'), | |
| livereload = require('gulp-livereload'), // Livereload plugin needed: https://chrome.google.com/webstore/detail/livereload/jnihajbhpnppcggbcgedagnkighmdlei | |
| tinylr = require('tiny-lr'), | |
| express = require('express'), |