초보자를 위해 git에서 기본 편집기를 변경하는 방법
When you decide to use a version control system (VCS) into your project using git And start creating the project
folder and writing the first commands,
첫 번째 저장소 생성
$ git init
Now we need to add our file into the Repository
$ git add test_code.js
Now the test_code.js file in the Staging area ( Index )
작업 트리의 상태를 얻으려면
$ git status
The last step we need to run
$ git commit
to captures a snapshot of the project's currently staged changes.
$ git commit
Then the default text editor will run you need to write i letter to start typing the commit message and once you have done you need to click on esc button and input :wq to save and quite ,
Here's the problem if you didn’t familiar with the default Vim or nano text editor you need to add this command to use your favourite text editor,
$ git config --global core.editor "Atom"
i'll use Atom as a text editor.finally Run this command
git commit --amend
to recover the commit message by input R then press Enter and run the$ git commit
again
행운과 행복한 배움
Reference
이 문제에 관하여(초보자를 위해 git에서 기본 편집기를 변경하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/3bdelrahman/how-to-change-the-default-editor-in-git-for-beginners-4734텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)