Git全局配置文件分享

34次阅读
没有评论

共计 529 个字符,预计需要花费 2 分钟才能阅读完成。

配置说明

  1. 方便查看git所有分支
    1. git ls
    2. git ll
  2. 换行符保持一致, 不冲突
  3. 多个git环境共存
    1. https://gitee.com
    2. 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
正文完
 
BlackBeans
版权声明:本站原创文章,由 BlackBeans 2025-01-08发表,共计529字。
转载说明:除特殊说明外本站文章皆由CC-4.0协议发布,转载请注明出处。
评论(没有评论)