共计 529 个字符,预计需要花费 2 分钟才能阅读完成。
配置说明
- 方便查看git所有分支
- git ls
- git ll
- 换行符保持一致, 不冲突
- 多个git环境共存
- https://gitee.com
- https://codeup.aliyun.com
Git全局配置文件
[user]
email = lucan@local.com
name = lucan
[core]
autocrlf = true
safecrlf = true
eol = lf
quotepath = false
filemode = false
[alias]
ci = commit
co = checkout
st = status
ls = branch -vvv
ll = branch -a -vvv
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[credential]
helper = store
[credential "https://codeup.aliyun.com"]
provider = generic
[credential "https://gitee.com"]
provider = generic
正文完