git為指定專案設定使用者名稱密碼
阿新 • • 發佈:2021-08-09
我們如果沒有為專案設定使用者名稱密碼,那麼每次提交都會有提示賬號和密碼輸入:
1.找到你專案的半隱藏檔案.git資料夾,通常只要git init 就會生成這樣一個資料夾,現在雙擊進入資料夾:
git config user.name "qianxiao"
2.我們執行如下程式碼檢視git配置檔案:
cat configLinux用法
windows 直接記事本開啟即可
3.顯示如下配置:
顯示如下內容:
[core] repositoryformatversion = 0 filemode = false bare = false logallrefupdates= true symlinks = false ignorecase = true [remote "origin"] url = http://gitee.com/xxx/object.git fetch = +refs/heads/*:refs/remotes/origin/* [branch "room"] remote = origin merge = refs/heads/room [user] name = qianxiao
看到最後一行,成功為當前專案設定了git使用者名稱
4.然後執行如下程式碼新增配置:
git config credential.helper store
5.再執行cat config檢視配置:
[core] repositoryformatversion = 0 filemode = false bare = false logallrefupdates = true symlinks = false ignorecase = true [remote "origin"] url = http://gitee.com/xxx/object.git fetch = +refs/heads/*:refs/remotes/origin/* [branch "room"] remote = origin merge = refs/heads/room [user] name = qianxiao [credential] helper = store
看到最後一行新增如上helper;