Just go into the root directory of your project and type in:
git checkout -b branch1
That’s all. Now your created a new branch with the name “branch1”. Your working directory is now the branch.
You can commit your changes like this:
git add . git -a -m "my changes"
After the commit you can switch to the master with this command:
git checkout master
Now you are again on the master branch. If you want to merge your two branches you can do it in this way:
git mege branch1
typo:
git mege branch1 = git merge branch1
Were you hungry when writing this? Its “branch” not “brunch” š
I’m always hungry š Just improved it. Thanks for the notice.