Reputation: 665
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:
I want to change username "Laxmi" to "Nikhil".
Upvotes: 3
Views: 3154
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
Upvotes: 5