User:OliverCharles/WorkingWithGit: Difference between revisions

From MusicBrainz Wiki
Jump to navigationJump to search
(Some tips for Brian on how to work with Git alongside me (Imported from MoinMoin))
 
m (1 revision(s))
 
(No difference)

Latest revision as of 08:00, 15 March 2009

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