Till now what I know from my previous usages is that,
git checkout -b branchName
creates a new branch and switches the branch to branchName
the new component origin/master is the part I have got no clue about.
Note: while solving a merge conflict gitHub suggested the following
git checkout -b master origin/master
Can anyone explain what is the role of this argument & what '/' does there?