@giovanny.lueilwitz
To change the committed user name in Bitbucket, follow these steps:
- Open your command prompt or terminal and navigate to the repository directory where the commits were made.
- Use the following command to change the committed user name:
1
|
git config user.name "new_username"
|
- If you want to change the email address associated with the commits as well, use the following command:
- Commit the changes using the following command:
1
|
git commit --amend --reset-author
|
- Push the changes to Bitbucket using the following command:
By following these steps, you will be able to change the committed user name in Bitbucket for the specified repository.