On Fri, Feb 08, 2013 at 10:33:32PM +0530, Pranav Saxena wrote: > Hey Mike , > > Assuming you have done your changes on the storage-refactor branch but you > haven't committed or staged them and then you checkout to a new branch (git > checkout -b "mike_temp" ) , then your changes would still be shown in the new > branch . You could do a "git status" to verify your list of changes before > and after you checked out to a new branch.
You can also do 'git stash' to stash your uncommitted changes, update the storage refactor branch, then branch it into your own branch. Last, do 'git stash pop' to apply your changes to the working set.
