microsoft / vscode-remote-release

Visual Studio Code Remote Development: Open any folder in WSL, in a Docker container, or on a remote machine using SSH and take advantage of VS Code's full feature set.
https://aka.ms/vscode-remote
Other
3.65k stars 286 forks source link

Copied .gitconfig not valid on Linux #1945

Closed chrmarti closed 4 years ago

chrmarti commented 4 years ago

@dbaeumer has a .gitconfig that is not considered valid on Linux.

Could you attach your local .gitconfig? Thanks.

dbaeumer commented 4 years ago

Here it is (minus my personal info. If it doesn't repro please ping)

[core]
    excludesfile =
    preloadindex = true
    fscache = true
    editor = \"C:\\Users\\dirkb\\AppData\\Local\\Programs\\Microsoft VS Code Insiders\\Code - Insiders.exe\" --wait
[alias]
    co = checkout
    ci = commit
    st = status
    br = branch
    hist = log --pretty=format:\"%Cgreen%h%Creset %ad |%C(cyan)%d%Creset %s %Cred<%an>%Creset\" --graph --date=relative --date-order -25
    hist-unlimited = log --pretty=format:\"%Cgreen%h%Creset %ad |%C(cyan)%d%Creset %s %Cred<%an>%Creset\" --graph --date=relative --date-order
    current = !git symbolic-ref HEAD 2>/dev/null | cut -d/-f 3
    standup = !git log --pretty=format:\"%Cred%ad%Creset | %s\" --since=\"1 day ago\" --date=relative --date-order --all --author=\"$(git config user.name)\"
[diff]
    guitool = winmerge
    prompt = false
[difftool "winmerge"]
    path = c:/Program Files (x86)/WinMerge/WinMergeU.exe
    cmd = \"c:/Program Files (x86)/WinMerge/WinMergeU.exe\" -e -u -dl \"Base\" -dr \"Mine\" \"$LOCAL\" \"$REMOTE\"
    prompt = false
[merge]
    tool = winmerge
    prompt = false
[mergetool "winmerge"]
    path = c:/Program Files (x86)/WinMerge/WinMergeU.exe
    cmd = \"c:/Program Files (x86)/WinMerge/WinMergeU.exe\" -e -u -wl -dl \"Upstream\" -dr \"Merged\" \"$REMOTE\" \"$LOCAL\" \"$MERGED\"
    prompt = false
[color]
    ui = auto
[color "status"]
    changed = yellow bold
    untracked = yellow bold
    added = green bold
[monaco]
    master-branch = master
[push]
    default = current
[pull]
    rebase = true
[gc]
    auto = 256
[credential]
    helper = manager
[difftool "sourcetree"]
    cmd = '' \"$LOCAL\" \"$REMOTE\"
[mergetool "sourcetree"]
    cmd = "'' "
    trustExitCode = true
[filter "lfs"]
    required = true
    clean = git-lfs clean -- %f
    smudge = git-lfs smudge -- %f
    process = git-lfs filter-process