User:OliverCharles/WorkingWithGit

From MusicBrainz Wiki
< User:OliverCharles
Revision as of 08:51, 5 February 2009 by OliverCharles (talk | contribs) (Some tips for Brian on how to work with Git alongside me (Imported from MoinMoin))
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Starting work on a new feature:

git checkout master
git pull acid2
git checkout -b featureX

Staying current with me:

git chekout featureX
git pull acid2

Sharing changes:

git push origin featureX

Once a branch has been accepted:

git checkout master
git branch -D featureX