Linux下记住Gitee账户密码

Linux下记住Gitee账户密码

 

创建Git认证文件

在~/下, touch创建文件 .git-credentials, 用vim编辑此文件,输入:

 

执行命令

在终端下执行  :

  • git config --global credential.helper store

 

验证结果

可以看到~/.gitconfig文件,会多了一项:

[user]
        name = account
        email = [email protected]
[credential]
        helper = store
[push]
        default = simple

 

你可能感兴趣的:(gitee,git)