Configure your name and email on Bitbucket
When you make commits on your local system. The commit data determines which account name.If you want to change your username and password then you can use below code.
Use Below Code :
git config --global user.name "YOUR_NAME" git config --global user.email "YOUR_EMAIL" git config git config --list
Share