Home > Back-end >  I made changes while on the wrong branch. I haven't committed yet. How do commit my changes to
I made changes while on the wrong branch. I haven't committed yet. How do commit my changes to

Time:03-18

  • I'm on branch A and made changes.
  • The changes have not yet been added or committed.
  • These changes are intended for branch B.

How do I go about adding and committing these changes to branch B?

CodePudding user response:

It all depends if you already committed the changes. Since you didn't commit the changes yet a git checkout should do the trick.

  • Related