
GIT : 기본 Editor 설정.
git config --global core.editor 명령으로 어떤 Editor 를 사용할지 선택 가능함
git config --global core.editor "vim" # recommand
# git config --global core.editor "code --wait" #vim을 모른다면.
# git config --global core.editor "nano" #vim 모르고 linux
# git config --global core.editor "notepad" #vim 모르고 windows
- 이 명령어는
.gitconfig파일을 편집하는 것이니 직접 해당 파일을 편집해도 됨 (다음 내용 참고)
또는 .gitconfig에 다음 내용 추가.
editor=vim
많은 경우, vim이 아닌 nano로 되어있음.
관련하여 읽어보면 좋은 자료.
2023.01.10 - [Computer/Linux] - [Linux] Nano Editor 간단 사용법
[Linux] nano Editor 간단 사용법
주로 vi만 사용하기 때문에 nano는 그닥...문제는 다른 사람 장비에서 간단한 일을 할 때, vi가 없는 경우가 있고, editor 지정을 vi로 바꾸며 원래 주인이 답답해하는 경우가 발생한다. (그렇다고 매
dsaint31.tistory.com
[Git] git 에서 editor 로 VS Code 사용하기.
넋두리 Linux환경에서 가장 적응하기 귀찮은 게 무엇이냐라고 묻는다면...editor라고 말하고 싶다. 특히, 터치(?) 세대들은 gui에 익숙하다 보니 cli도 굉장히 부담스러워한다. vim은 꼭 익히길 권하지
ds31x.tistory.com
https://ds31x.blogspot.com/2023/07/env-visual-studio-code-and-visual-studio.html
[Env] Visual Studio Code and Visual Studio
Visual Studio Code (vscode)는 IDE임을 강조하는 Visual Studio와 달리, code editor임을 강조하고 있다. Visual Studio는 전형적인 Integrated Development Environment로 MF...
ds31x.blogspot.com
[Git] Git Summary (작성중)
git이란2024.05.20 - [utils/git and github] - Git : 소개 git 설치 후 해줘야 하는 작업들[Git] git 설치 후 우선 해줘야 하는 작업들 (tistory.com)local repository 초기화2024.05.20 - [utils/git and github] - [Git] init : local repo
ds31x.tistory.com
'Computer > ETC' 카테고리의 다른 글
| [mkdocs] custom domain 사용하기. (0) | 2023.04.07 |
|---|---|
| [mkdocs] mkdocs build 등에서 특정 파일 카피 설정. (0) | 2023.04.07 |
| [Etc] Chrome Remote Desktop으로 원격지원 받기. (0) | 2022.12.28 |
| Round-off Error vs. Truncation Error (0) | 2022.09.22 |
| Boltzmann’s Factor (or Boltzmann’s Distribution) (0) | 2022.06.09 |