git

This is an old revision of the document!


Git configuration

$ git config --list|sort
auto.crlf=0
core.autocrlf=true
core.bare=false
core.editor="C:\Program Files\TextPad 7\TextPad.exe" --wait
core.filemode=false
core.fscache=true
core.ignorecase=true
core.logallrefupdates=true
core.repositoryformatversion=0
core.symlinks=false
core.symlinks=false
credential.helper=manager-core
credential.helper=manager-core
credential.https://dev.azure.com.usehttppath=true
diff.astextplain.textconv=astextplain
difftool.sourcetree.cmd='' "$LOCAL" "$REMOTE"
filter.lfs.clean=git-lfs clean -- %f
filter.lfs.clean=git-lfs clean -- %f
filter.lfs.process=git-lfs filter-process
filter.lfs.process=git-lfs filter-process
filter.lfs.required=true
filter.lfs.required=true
filter.lfs.smudge=git-lfs smudge -- %f
filter.lfs.smudge=git-lfs smudge -- %f
gui.geometry=893x435+156+156 175 196
gui.recentrepo=E:/Developed/Git/Professional Git
gui.wmstate=zoomed
http.sslbackend=openssl
http.sslcainfo=C:/Program Files/Git/mingw64/ssl/certs/ca-bundle.crt
init.defaultbranch=master
mergetool.sourcetree.cmd=''
mergetool.sourcetree.trustexitcode=true
pull.rebase=false
user.email=versions@seanys.com
user.name=phlaange

$ git config --global --list|sort
auto.crlf=0
core.editor="C:\Program Files\TextPad 7\TextPad.exe" --wait
credential.helper=manager-core
difftool.sourcetree.cmd='' "$LOCAL" "$REMOTE"
filter.lfs.clean=git-lfs clean -- %f
filter.lfs.process=git-lfs filter-process
filter.lfs.required=true
filter.lfs.smudge=git-lfs smudge -- %f
gui.recentrepo=E:/Developed/Git/Professional Git
mergetool.sourcetree.cmd=''
mergetool.sourcetree.trustexitcode=true
user.email=versions@seanys.com
user.name=phlaange

$ git config --local --list|sort
core.bare=false
core.filemode=false
core.ignorecase=true
core.logallrefupdates=true
core.repositoryformatversion=0
core.symlinks=false
gui.geometry=893x435+156+156 175 196
gui.wmstate=zoomed

$ git config --system --list|sort
core.autocrlf=true
core.fscache=true
core.symlinks=false
credential.helper=manager-core
credential.https://dev.azure.com.usehttppath=true
diff.astextplain.textconv=astextplain
filter.lfs.clean=git-lfs clean -- %f
filter.lfs.process=git-lfs filter-process
filter.lfs.required=true
filter.lfs.smudge=git-lfs smudge -- %f
http.sslbackend=openssl
http.sslcainfo=C:/Program Files/Git/mingw64/ssl/certs/ca-bundle.crt
init.defaultbranch=master
pull.rebase=false

$ cat /c/Program\ Files/Git/etc/gitconfig
[credential]
    helper = manager-core
[diff "astextplain"]
    textconv = astextplain
[filter "lfs"]
    clean = git-lfs clean -- %f
    smudge = git-lfs smudge -- %f
    process = git-lfs filter-process
    required = true
[http]
    sslBackend = openssl
    sslCAInfo = C:/Program Files/Git/mingw64/ssl/certs/ca-bundle.crt
[core]
    autocrlf = true
    fscache = true
    symlinks = false
[pull]
    rebase = false
[credential "https://dev.azure.com"]
    useHttpPath = true
[init]
    defaultBranch = master

$ cat /c/Users/All\ Users/Git/config
[core]
        symlinks = false
        autocrlf = true
        fscache = true
[color]
        diff = auto
        status = auto
        branch = auto
        interactive = true
[pack]
[help]
        format = html
[http]
        sslCAInfo = C:/Program Files/Git/mingw64/ssl/certs/ca-bundle.crt
[diff "astextplain"]
        textconv = astextplain
[rebase]
        autosquash = true

$ cat /e/Developed/Git/Professional Git/.git/config
[core]
    repositoryformatversion = 0
    filemode = false
    bare = false
    logallrefupdates = true
    symlinks = false
    ignorecase = true
[gui]
    wmstate = zoomed
    geometry = 893x435+156+156 175 196

$ cat /c/Users/Varimathras/.gitconfig
[filter "lfs"]
    process = git-lfs filter-process
    required = true
    clean = git-lfs clean -- %f
    smudge = git-lfs smudge -- %f
[user]
    name = phlaange
    email = versions@seanys.com
[core]
    editor = \"C:\\Program Files\\TextPad 7\\TextPad.exe\" --wait
[credential]
    helper = manager-core
[difftool "sourcetree"]
    cmd = '' \"$LOCAL\" \"$REMOTE\"
[mergetool "sourcetree"]
    cmd = "'' "
    trustExitCode = true
[auto]
    crlf = 0
[gui]
    recentrepo = E:/Developed/Git/Professional Git
  • git.1639818299.txt.gz
  • Last modified: 2021/12/18 17:04
  • by admin
  • Currently locked by: 172.18.0.1