Creating and Pushing Branches
Create a branch and push it to the remote repository.
In this section, you’re going to familiarise yourself with how branches are managed between the two and what exactly goes on in a push.
Setup
First, set up a simple origin Git repository and clone it like you did before.
1 mkdir -p lgthw_pushing
2 cd lgthw_pushing
3 mkdir git_origin
4 cd
...