공식문서

Reference

help 명령어

git help -a  # 상세히 명령어들 살펴보기
git 명령어 -h # 명령어 옵션 보기
git help 명령어 # web에서 해당 명령어 상세보기

Git에 기본 에디터 변경

git config --global core.editor "editor이름"
git config --global core.editor "code --wait" #VSC를 기본 에디터로 설정, 
# wait을 해주어야 잠시 멈추었다가 VSC에 열린 code 수정 창을 닫으면 
# CLI가 지속 실행되는 프로세스로 진행됩니다.

Git에 기본 설정 변경

git config global -e #global 설정입니다. 만지실 때 유의해주세요.

명령어 연습 사이트

GitExplorer

Learn Git Branching