Startup thinking for the social sector. Code to help nonprofits do the social web. Plus photography.
(And reading aloud.)
More about Eric Johnson.
Stories, software and strategies to help nonprofits do the social web
Git is a great (and fashionable) source control management program. GitHub takes the pain out of hosting Git for a group — for both open-source and private projects. How to best use them together? The Way to Happiness has these 4 steps:
Let’s say you just forked `github-gem` on GitHub from defunkt.
$ github clone YOU/github-gem
$ cd github-gem
$ github pull defunktThis will setup a remote and branch for defunkt’s repository at master. In this case, a ‘defunkt/master’ branch.
If defunkt makes some changes you want, simply `github pull defunkt`. This will leave you in the ‘defunkt/master’ branch after pulling changes from defunkt’s remote. After confirming that defunkt’s changes were what you wanted, run `git checkout master` and then `git merge defunkt/master` to merge defunkt’s changes into your own master branch.
Comments 0 Comments