About 1,020,000 results
Open links in new tab
  1. How to change my Git username in terminal? - Stack Overflow

    Jul 18, 2017 · Execute git config --list to check current username & email in your local repo. Change username & email as desired. Make it a global change or specific to the local repo: git …

  2. git config - Configuring Git `user.name`? - Stack Overflow

    git config --global user.name = "My Name" the command interprets the = character as the string value passed to the user.name key, and the rest of the line ("My Name") is silently ignored.

  3. git config - How to know the git username and email saved during ...

    To know the username, type: git config user.name To know the email, type: git config user.email These two output just the name and email respectively and one doesn't need to look through …

  4. How to use git (git config --global)? - Stack Overflow

    Not sure where "smcho" comes from, but the setting to set your name is user.name: git config --global user.name "Your Name" You can set your e-mail address too: git config --global …

  5. Configuring user and password with Git Bash - Stack Overflow

    124 From Git Bash I prefer to run the command: git config --global credential.helper wincred At that point running a command like git pull and entering your credentials one time should have …

  6. How to tell git to use the correct identity (name and email) for a ...

    global set git config --global user.email [email protected] git config --global user.name 'Mahmoud Zalt' global get git config --global --get user.email git config --global --get user.name …

  7. "Make sure you configure your 'user.email' and 'user.name' in git" …

    Feb 26, 2019 · I tried setting user.name and user.email with the global flag, in the programfiles/git/bin, nothing worked, apart from @alelom's suggestion, thank you!: (1) Ensure …

  8. VS Code not recognizing that I have user name and email set for git

    Sep 1, 2023 · Having an issue that I have not been able to figure out. I have git-bash installed from git-scm.com on Windows 10. I have configured the user name and email globally. Using …

  9. git config - What is the difference between global and local ...

    Git comes with a tool called git config that lets you configure variables that control all the aspects of how git will operate. git config holds its value between upgrades. So, you need to set it only …

  10. github - What should I use for git user.name? - Stack Overflow

    Dec 23, 2012 · $ git config --global user.name "John Doe" And I've read this GitHub page which says: $ git config --global user.name "Your Name Here" The first implies that one should use …