Skip to content

Latest commit

 

History

History
34 lines (21 loc) · 1.59 KB

README.md

File metadata and controls

34 lines (21 loc) · 1.59 KB

Introduction to Bootstrap Demo

This demo is like a slide deck for developers. Each commit represents a set of changes toward creating a starter page with Bootstrap. You can fork this entire repository and walkthrough each of the code changes by jumping around to each commit, using git checkout <revision>

screenshot

Stepping Through Commits

I wrote an article about using using revision control to demo live coding changes

Here's the short version:

git config --local alias.child-sha "!git rev-list HEAD..master | tail -n 1"
git config --local alias.initial-commit "!git rev-list --all | tail -n 1"

git checkout master
git checkout $(git initial-commit)
git checkout $(git child-sha)

Some Links

★ You are here
Here's an blog post about my presentation
Here is a link to my talk for the 21st Boston Code Camp
Here are the powerpoint slides from the talk
Here is the latest version of the demo (hosted on the gh-pages branch)
You can get Bootstrap here (and also read their great documentation)
You can style Bootstrap here