Being new to Git, how to handle the following scenario:
I'm working on a bug fix and I want to do that in a separate branch. I have a remote Git repo and I have cloned it. So when I do a git branch on my local file system, I can see that I'm pointing to the master. I then created a new branch using:
git checkout -b myBranchName
Is this newly created branch available in the remote repo?
Should I push it explicitly?
What is the best workflow for this?
答案 0 :(得分:2)