Nikhil Lotke
Nikhil Lotke

Reputation: 665

Change username for BitBucket from Android Studio without Terminal

I tried changing BitBucket username through Terminal but want to change it through Android Studio. Is there an option available in VCS or Version control so as to change it?

Here is my example:

enter image description here

I want to change username "Laxmi" to "Nikhil".

Upvotes: 3

Views: 3154

Answers (1)

Avinash Shinde
Avinash Shinde

Reputation: 385

First off, check your git configuration if the email address set on your git config file matches the email address set on your Bitbucket user profile

$ git config -l

Resolution

If your email address set on your git configuration file does not match the email address set on your Bitbucket Server user profile, this is expected behavior and you need to configure your local Git client accordingly. If you want to see a different user on that column you must update your Git configuration and perform a new commit:

$ git config --global user.name "John Doe"

$ git config --global user.email [email protected]

check this url

https://confluence.atlassian.com/bitbucketserverkb/commit-in-bitbucket-server-shows-a-different-username-than-the-one-that-pushes-the-code-779171816.html

Upvotes: 5

Related Questions