Answers for "visual studio code set git config"

4

git vs code editor

git config --global core.editor "code -w"
Posted by: Guest on August-03-2021
0

configure git diff tool vscode

git config --global -e 


[core]
  editor = code --wait
[diff]
  tool = vscode
[difftool "vscode"]
  cmd = code --wait --diff $LOCAL $REMOTE
[merge]
  tool = vscode
[mergetool "vscode"]
  cmd = code --wait $MERGED
Posted by: Guest on March-30-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language