Git

记住密码

bash
# 长期记住密码
git config --global credential.helper store

# 临时记住密码(默认15分钟)
git config --global credential.helper cache

# 记住密码一个小时
git config credential.helper 'cache --timeout=3600'