Skip to main content

Esta versão do GitHub Enterprise foi descontinuada em 2022-10-12. Nenhum lançamento de patch será feito, mesmo para questões críticas de segurança. Para obter melhor desempenho, segurança aprimorada e novos recursos, atualize para a última versão do GitHub Enterprise. Para obter ajuda com a atualização, entre em contato com o suporte do GitHub Enterprise.

Setting your commit email address

You can set the email address that is used to author commits on your GitHub Enterprise Server instance and on your computer.

About commit email addresses

GitHub uses your commit email address to associate commits with your account on your GitHub Enterprise Server instance. You can choose the email address that will be associated with the commits you push from the command line as well as web-based Git operations you make.

For web-based Git operations, you can set your commit email address on your GitHub Enterprise Server instance. For commits you push from the command line, you can set your commit email address in Git.

After changing your commit email address on GitHub Enterprise Server, the new email address will be visible in all of your future web-based Git operations by default. Any commits you made prior to changing your commit email address are still associated with your previous email address.

To ensure that commits are attributed to you and appear in your contributions graph, use an email address that is connected to your account on your GitHub Enterprise Server instance. For more information, see "Adding an email address to your GitHub account."

Setting your commit email address on GitHub

  1. No canto superior direito de qualquer página, clique na foto do seu perfil e em Configurações.

    Ícone Settings (Configurações) na barra de usuário

  2. In the left sidebar, click Emails. Emails tab

  3. Em "Adicionar endereço de email", digite seu endereço de email e clique em Adicionar. Botão de adição de email

  4. Na lista "endereço de e-mail principal", selecione o endereço de e-mail que você gostaria de associar � s operações do Git baseadas na web. Seleção de endereço de email principal

Setting your commit email address in Git

You can use the git config command to change the email address you associate with your Git commits. The new email address you set will be visible in any future commits you push to your GitHub Enterprise Server instance from the command line. Any commits you made prior to changing your commit email address are still associated with your previous email address.

Setting your email address for every repository on your computer

  1. Abra TerminalTerminalGit Bash.
  2. Definir um endereço de e-mail no Git. Use qualquer endereço de email.
    $ git config --global user.email "YOUR_EMAIL"
  3. Confirme que você configurou o endereço de e-mail corretamente no Git:
    $ git config --global user.email
    email@example.com
  4. Adicione o endereço de email �  sua conta do GitHub Enterprise Server para que seus commits sejam atribuídos a você e apareçam no grafo de contribuições. Para obter mais informações, confira "Como adicionar um endereço de email �  sua conta do GitHub".

Setting your email address for a single repository

GitHub Enterprise Server uses the email address set in your local Git configuration to associate commits pushed from the command line with your account on your GitHub Enterprise Server instance.

You can change the email address associated with commits you make in a single repository. This will override your global Git configuration settings in this one repository, but will not affect any other repositories.

  1. Abra TerminalTerminalGit Bash.
  2. Change the current working directory to the local repository where you want to configure the email address that you associate with your Git commits.
  3. Definir um endereço de e-mail no Git. Use qualquer endereço de email.
    $ git config user.email "YOUR_EMAIL"
  4. Confirme que você configurou o endereço de e-mail corretamente no Git:
    $ git config user.email
    email@example.com
  5. Adicione o endereço de email �  sua conta do GitHub Enterprise Server para que seus commits sejam atribuídos a você e apareçam no grafo de contribuições. Para obter mais informações, confira "Como adicionar um endereço de email �  sua conta do GitHub".