dharmafly / tasket

A micro-volunteering app, for crowd-managed tasks.
http://dharmafly.com/tasket
26 stars 3 forks source link

Update README with "master" + "release" branch info #389

Closed premasagar closed 13 years ago

premasagar commented 13 years ago

To set this up:

# setup new branches so that git-pull(1) will appropriately merge from the remote branch
git config branch.autosetupmerge true

# setup a local release branch to track the remote release branch
git branch --track release origin/release

# merge changes from master into the release branch
git checkout release
git merge master

Maybe add a hint for local git flow when developing features: