User:OliverCharles/WorkingWithGit

From MusicBrainz Wiki
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