vote up 0 vote down star

How can you put uncommitted changes to a branch TEST when I am at the branch master?

flag

2 Answers

vote up 2 vote down check

You can just checkout to the test branch and then commit. You don't lose your uncommited changes when moving to another branch.

Supposing your at the master branch

git checkout test
git add .
git add deletedFile1
git add deletedFile2
...
git commit -m "My Custom Message"

Not really sure about the deleted files. But I guess they aren't included when you use "git add ."

link|flag
vote up 1 vote down
git checkout TEST
git add file1 file2
git commit
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.