Hacker News new | ask | show | jobs
by BinaryBullet 5167 days ago
I haven't done this yet, but I'm guessing you could just branch off of master, and create a "home" or "work" branch.

To me that might be better than using setup scripts for the various environments, and keeping it all in one branch (like I've seen other people do).

I'd prefer to see the differences by doing things like:

    git diff master work
or

    git diff home work
etc