I’m following the instructions to setup Git at https://git-scm.com/book/en/v2/Getting-Started-First-Time-Git-Setup
The document states to run the following from the command line:
$ git config --global user.name "John Doe"
$ git config --global user.email johndoe@example.com
When I run these commands with the $
sign in front I receive this error:
$git is not re-cognized as an internal or external command.
I also tried:
git config --global user.name "John Doe"
git config --global user.email johndoe@example.com
When I run both lines the command line returns to the next line without an acknowledgement statement.
Afterwards the two commands do not seem to take effect.
I have Git with GitBash install. Is there something obvious I am missing here?