wfxr
9/16/2016 - 7:49 AM

git-learning.md

https方式clone的项目如何缓存用户名和密码

缓存用户名和密码

git config --global credential.helper cache

改变缓存失效的时长(秒)

git config --global credential.helper 'cache --timeout=3600'

Ref

https://help.github.com/articles/caching-your-github-password-in-git/

创建标签

轻量级标签

$ git tag v0.1.2-light

附注标签(常用)

$ git tag -a v0.1.2 -m “0.1.2版本”