@addison
To switch between the master branch and a new feature branch in Git, you can use the git checkout
command. Here's how you can do it:
1
|
git checkout master |
1
|
git checkout -b new-feature |
1
|
git checkout new-feature |
Now, you have successfully switched between the master branch and the new feature branch. You can continue working on your new feature branch and then switch back to the master branch when you are ready to merge your changes.