Why am I unable to create/checkout this branch?
I am trying to create a local Git branch, but it is not working. Here are the commands I am using: tablet:edit11$ git checkout -b edit_11 Switched to a new branch 'edit_11' tablet:edit11$ git checkout edit_11 error: pathspec 'edit_11' did not match any file(s) known to git. tablet:edit11$ git branch tablet:edit11$ What's going on? You successfully created and "switched to" a branch called edit_11 when you ran git checkout -b edit_11 However, everything (incl. an empty git branch output) indicates that you have just initialised your repository and have yet made to make an initial commit. If