#MVRT_Site
MVRT's beautiful website.
$ git clone http://github.com/mvrt-115/MVRT_Site.git- NodeJS
- Ruby
- Bundler
gem install bundler - GraphicsMagick
bundle install&bower install
$ npm installServe Locally:
$ gulp serveGenerate Production Code:
$ gulp production
$ # Built (production) source is available at `dist/`####To add dev and dev1 as remotes:
$ # adding dev
$ git remote add dev [email protected]:dev.git
$ # adding dev1
$ git remote add dev1 [email protected]:dev1.git####Pushing to dev and dev1:
$ git push [remote-name] [local-branch]:master
$ # Examples:
$ git push dev feature/updateDocs:master
$ git push dev1 develop:master$ git remote add [yourForkName] https://github.com/[yourUsername]/MVRT_Site.gitBranch off of the develop branch, creating a new branch for each individual change proposed.
Name your branch something reasonable, like feature/blog or hotfix/buildScripts
$ git checkout origin/develop
$ git checkout -b [branchName](Details on the way)
$ git commit -m "[commit message]"
$ git pushThat's it!!