How do I update the password for Git?

后端 未结 26 2029
一整个雨季
一整个雨季 2020-12-02 03:12

I\'m using BitBucket with Xcode and Git for version control, and recently I changed all of my passwords (thanks Adobe!).

Unsurprisingly, I\'m no longer able

26条回答
  •  春和景丽
    2020-12-02 03:55

    do these steps in Terminal:

    1. Delete current password saved in your Mac

      git config --global --unset user.password
      
    2. Add your new password by using this command, replace with your new password:

      git config --global --add user.password 
      

提交回复
热议问题