Archive for December, 2010

My Daylite Touch for iPad case study

December 16th, 2010

I was involved in the Beta testing of Daylite Touch for the iPad and was invited to write a case study describing how my business benefits from using Daylite and Daylite Touch for iPad. Here’s the published case study.

Quick notes on creating a local git branch and pushing it into the wild

December 6th, 2010
  1. Checkout the branch you want to switch from
    git checkout branch_to_branch_from
  2. Create the local branch
    git branch branch_name
  3. Switch to the branch
    git checkout branch_name
  4. Push to Remote
    git push origin branch_name