You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
Hi, i have a atlassian user with my email provided from the company, i have created a repository behalf of the company, but when i do commits, my avatar dosent show up, just a placeholder and says that: This user cannot be matched to an Atlassian user. How can i fix this, because when i do commits, it now shows up, but when i merged and etc. via bitbucket my avatar url shows up, how can i fix this?
This show when i commit, but when i merged and etc. via bitbucket i get it right:
This is really annoying, how can i fix this?
In my .ssh folder i have a config where im using two ssh-keys:
Host *
UseKeychain yes
AddKeysToAgent yes
#Github (default)
Host gh
HostName github.com
User git
IdentityFile ~/.ssh/id_rsa
#Bitbucket (secondary)
Host bb
HostName bitbucket.org
User git
IdentityFile ~/.ssh/id_rsa_bb
Thank you!
If the email address in your commit does not match what's in Bitbucket you will see this behavior. I recommend generating ssh keys that include your email:
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
Then configure git to use the same email address and user name you use in Bitbucket so that these appear in your commit log:
git config --add user.email "your_email@example.com"
git config --add user.name "First Last"
Good luck and happy coding!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Another option is to add your remaining emails address as alias at:
https://bitbucket.org/account/settings/email/
More info:
https://confluence.atlassian.com/bitbucket/set-email-aliases-792298714.html
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi everyone, We are looking to learn more about development teams’ workflows and pain points, especially around DevOps, integrations, administration, scale, security, and the related challeng...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.