Github各種賬號密碼錯誤的統一解決方案

2021-10-21 12:46:34 字數 348 閱讀 5703

使用github,如果有時需要切換不同的賬號密碼時,容易出現無法push的錯誤。這時候,最簡單的辦法,就是重置git config中的賬號密碼了。

其常見錯誤為:

fatal: unable to access : the requested url returned error: 403

1. 可以使用git config --list 來檢視使用者資訊,並進行更改;

這裡有三種情況可用: --global, --local, --system

2. 如果更改使用者名稱和郵箱沒有效果,則需要重置系統設定:

git config --system --unset credential.helper

檢視git 賬號密碼和修改git賬號密碼

檢視使用者名稱 git config user.name 檢視密碼 git config user.password 檢視配置資訊 git config list 修改使用者名稱 git config global user.name x 新的使用者名稱 修改密碼git config global ...

git記住賬號密碼

涉及到記住密碼的方式,只適用於http s 方式,記住密碼的幾種方式 https 方式每次都要輸入密碼,按照如下設定即可輸入一次就不用再手輸入密碼的困擾而且又享受 https 帶來的極速 按照以下設定記住密碼十五分鐘 git config global credential.helper cache...

賬號密碼登入介面

後台 select username,password from users where username uname and password passwd limit 0,1 輸入賬號 dumb 密碼 dumb2 select username,password from users where...