[git-users] probably silly...

2009-06-16 Thread sw0rdfish
I'm having a heck of a time finding the answer to what I assume is a simple question... your help is appreciated... I have two branches master and development... I want the development branch to become the master branch I went about changes the wrong way and over a 3 week period made

[git-users] Re: probably silly...

2009-06-16 Thread Dan Preston
git checkout master# Make sure you are on the master branch. git checkout -b master-old # Make a copy of that branch called master-old as a backup. git branch -d master# Delete the original master branch. git checkout development# Switch to the development branch.