Git不需重复输入账号和密码的方法

linux下

在~/下, touch创建文件 .git-credentials:
touch .git-credentials

# 用vim编辑此文件,
vim .git-credentials

#输入内容格式
https://username:[email protected]

2. 在终端下执行 

git config --global credential.helper store


可以看到~/.gitconfig文件,会多了一项:
[credential]
    helper = store

更多:

windows下: http://www.cnblogs.com/ballwql/p/3462104.html



你可能感兴趣的:(git,自动使用账号)