─[$] cat ~/.gitconfig
[user]
name = Shirish Agarwal
email = xxxx@xxxx.xxx
[core]
editor = leafpad
excludesfiles = /home/shirish/.gitignore
gitproxy = \"ssh\" for gitorious.org
[merge]
tool = meld
[push]
default = simple
[color]
ui = true
status = auto
branch = auto
现在,我想将我的git凭证放入github,gitlab和gitorious,以便每次不必在浏览器上查找凭证。如何做到这一点使其自动化?
我正在运行zsh
credential.${remote}
和credential.helper
。您是否可以指出一些文档,因为这是我第一次阅读它。