从没有终端的 Android Studio 更改 BitBucket 的用户名

Nik*_*tke 3 android bitbucket android-studio

我尝试通过终端更改 BitBucket 用户名,但想通过 Android Studio 更改它。VCS 或版本控制中是否有可用的选项来更改它?

这是我的例子:

在此处输入图片说明

我想将用户名“Laxmi”更改为“Nikhil”。

Avi*_*nde 5

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 johndoe@example.com

检查这个网址

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