In the commits tab of repositories which I am working whenever I hover to my name it says " This user account cannot be matched to an Atlassian account. "
Hi @Gribesh Dhakal, welcome to the Community!
It could be that your email address is not correctly mapped to your account, or that you're using a different address for some of the commits. To fix this it, make sure you're using the right email address in your git configuration. You can also set up an email alias by following the instructions in the article Set email aliases.
Hope that helps! Let us know if you need any further assistance :)
Best regards,
Ana
Does your email address in your git config match the email of your Atlassian account?
You can check using the following command:
git config --global -list
In most cases you will have it configured globally, but you can check the local configuration as well.
git config --local -list
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
-list is missing a dash. It should be --list.
Easier than doing: git config --local --list
you can instead do: git config user.email
to get just the local email address for the repository you're in. If not in a git repository directory, it should give you the global version.
Source: https://stackoverflow.com/questions/37805621/change-email-address-in-git
Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.