Reputation: 65
Let's say my git username is 'gitme' and the password is 'gitpass'. how do I change the password to 'gitpass1'? Please let me know.
Upvotes: 3
Views: 13939
Reputation: 4993
to change password in Bitbucket
Upvotes: -1
Reputation: 1897
To reset/change your password in GitHub visit this website.
Upvotes: 0
Reputation: 4993
you can put the password in .netrc file (_netrc on windows). From there it would be picked up automatically. It would go to your home folder with 600 permissions.
a new option is to use the credential helper. Note that credentials would be stored in clear text in your local config using standard credential helper. credential-helper with wincred can be also used on windows.
Usage examples for credential helper
git config credential.helper store - stores the credentials indefinitely.
git config credential.helper 'cache --timeout=3600'- stores for 60 minutes
Upvotes: 2