Setting your Git username for every repository on your computer

  1. Open Git Bash.
  2. Set a Git username:
    $ git config --global user.name "Sezayir Dagtekin"
    
  3. Confirm that you have set the Git username correctly:
    $ git config --global user.name
    > Sezayir Dagtekin