Setting up Git User Name

前端 未结 1 1001
后悔当初
后悔当初 2021-01-15 22:04

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

相关标签:
1条回答
  • 2021-01-15 22:57

    $ stands for "prompt". You should'nt actually write it; its only purpose is to indicate where to begin the command.

    You should write them separately.

    git config --global user.name "John Doe"
    

    (Press enter) then

    git config --global user.email johndoe@example.com
    
    0 讨论(0)
提交回复
热议问题