I want to create a batch file that initializes all the keys / values ββin my .gitconfig file.
I am having problems installing the following section from cmd:
[mergetool "p4merge"] cmd = p4merge "$BASE" "$LOCAL" "$REMOTE" "$MERGED"
I tried:
git config --global mergetool.p4merge.cmd "p4merge \"$BASE\" \"$LOCAL\" \"$REMOTE\" \"$MERGED\""
But the result:
[mergetool "p4merge"] cmd = p4merge \"$BASE\" \"$LOCAL\" \"$REMOTE\" \"$MERGED\"
How to avoid these double quotes from cmd?
git cmd
lante
source share