escape double quotes in git config from cmd

后端 未结 1 1737
感情败类
感情败类 2021-01-02 16:05

I want to create a batch file that initializes all the key/values in my .gitconfig file.

I have troubles trying to set the following section from cmd:

相关标签:
1条回答
  • 2021-01-02 16:19

    The answer to "Git on Windows: How do you set up a mergetool?" proposes:

    • From a git bash session:
    git config --global mergetool.p4merge.cmd 'p4merge.exe \"$BASE\" \"$LOCAL\" \"$REMOTE\" \"$MERGED\"'
    
    • or, from a windows cmd.exe shell:
    git config --global mergetool.p4merge.cmd "p4merge.exe \"$BASE\" \"$LOCAL\" \"$REMOTE\" \"$MERGED\""
    

    So it depends if you launched git-bash.bat or git-cmd.bat

    0 讨论(0)
提交回复
热议问题