Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: changed global.user.name to global user.name

...

 In order to use the -s option, you need to make sure you configure your git name (user.name) and email address (user.email):

$ git config --global . user.name “John Doe”

$ git config –global.--global user.email johndoe@example.com

 

# To check

$ git config --list

3.      Add a commit message: See Commit Messages section below.  

...