This repository is a boilerplate for new .pug
projects.
Open up the command line and type these commands:
$ git clone --bare https://github.com/ekfuhrmann/project-boilerplate.git
# Make a bare clone of this repository
Create a new repo that you want to mirror into and then run the following:
$ cd project-boilerplate.git
$ git push --mirror https://github.com/<user name>/<new repo>.git
# Mirror-push to the new repository
$ cd ..
$ rm -Recurse -Force project-boilerplate.git
# Remove our temporary local repository
Read more here.
Be sure to run yarn install
or npm install
on the new repository once it has been mirrored to.