I want to separate each line in the branch to make it easier for me to read it. How do you change one image to make it look like Figure 2?


I want to separate each line in the branch to make it easier for me to read it. How do you change one image to make it look like Figure 2?


 
    
     
    
    The problem is: each of the remote tracking branches are part of the same history, they are direct descendant of the master branch.
So there is no "separate line" to see here, unless you create one by switching to each branch and pushing an empty artifical commit:
git switch register # creates the register branch tracking origin/register
git commit --allow-empty -m "artificial empty commit"
git push -u origin register
But again, you should not need that in your case (linear history)
