Linux下使用 Git-Credential-Manager(GCM) 作git鉴权
- 先根据官方文档安装 GCM。.
https://github.com/git-ecosystem/git-credential-manager/blob/release/docs/install.md
- 安装好以后进行配置。
git-credential-manager configure
git config --global credential.credentialStore secretservice
- 测试。
git init .
git add .
git commit -m "test"
git origin add https://github.com/xxx/xxx.git
git branch -M main
git push -u origin main
- 成功弹出 GCM WebBrowser 授权窗口,结束。
评论已关闭