About 190,000 results
Open links in new tab
  1. Change email address in Git - Stack Overflow

    Jun 14, 2016 · 804 Locally set email-address (separately for each repository) Open Git Bash. Change the current working directory to the local repository in which you want to set your Git config email. …

  2. 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 the whole list. …

  3. 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 config --global …

  4. Git: name and email address configuration - Stack Overflow

    Your name and email address were configured automatically based on your username and hostname. Please check that they are accurate. You can suppress this message by setting them explicitly: git …

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

    182 I use my personal laptop for both work and personal projects and I would like to use my work email address for my commits at work (gitolite) and my personal email address for the rest (github). I read …

  6. Git: Set local user.name and user.email different for each repo

    Feb 10, 2017 · I'm currently working on 2 projects, which expect that I configure my local username and email with different data when I push to them. For that I'm updating my config all the time like: git …

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

    There is no "=" for the parameters user.name and user.email, just use spaces. From the same page - The first thing you should do when you install Git is to set your user name and e-mail address. This is …

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

    (That is, once I enter my credentials the push/pull works correctly.) I have entered git config --global user.name myusername git config --global user.email myemail git config --global github.user …

  9. Changing the Git user inside Visual Studio Code - Stack Overflow

    Here are some steps to address this issue. 1. Sign out of your current account (only if you want to switch the current account) 2. Change Git settings globally The commands are git config --global user.email …

  10. How can I remove an entry in global configuration with git config?

    Oct 7, 2021 · I ran a global configuration command in git to exclude certain files using a .gitignore_global file: git config --global core.excludesfile ~/.gitignore_global Is there a way to undo the creation o...