text 如何:Vscode를Github序列编辑器로사용하기

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 如何:Vscode를Github序列编辑器로사용하기相关的知识,希望对你有一定的参考价值。

From :
https://stackoverflow.com/questions/30024353/how-to-use-visual-studio-code-as-default-editor-for-git/36644561

1. 터미널 열기.
2. code --help 정상 출력되는지 확인.
3. git config --global core.editor "code --wait"
4. git config --global -e
5. 열리는 깃헙 글로벌 에디터 설정에 다음 내용 추가.

[diff]
    tool = default-difftool
[difftool "default-difftool"]
    cmd = code --wait --diff $LOCAL $REMOTE
    
6. 끝.
    
This leverages the new --diff option you can pass to VS Code to compare two files side by side.

To summarize, here are some examples of where you can use Git with VS Code:

git rebase HEAD~3 -i allows to interactive rebase using VS Code
git commit allows to use VS Code for the commit message
git add -p followed by e for interactive add
git difftool <commit>^ <commit> allows to use VS Code as diff editor for changes

以上是关于text 如何:Vscode를Github序列编辑器로사용하기的主要内容,如果未能解决你的问题,请参考以下文章

网页 VSCode 在线浏览和编辑 github项目

网页 VSCode 在线浏览和编辑 github项目

网页 VSCode 在线浏览和编辑 github项目

如何导入vscode路径

最强开源编辑器,五步教你用 VSCode 进行 Python 开发!

hithesis部署和VSCode远程编辑tex文件