깃 환경설정 확인
git config --list
브랜치 디폴트값 환경설정 명령어
git config --global init.defaultBranch main
메인 에디터 Visual Studio Code로 설정하기
git config --global core.editor "code --wait"
환경설정에 내 email과 name 등록하기(git 환경설정)
git config --global user.email "깃@메일주소.com"
git config --global user.name "깃닉네임"
깃 환경설정 삭제
git config --unset --global user.name
git config --unset --global user.email
'했던것들 > git' 카테고리의 다른 글
git branch 목록 확인 및 브랜치 삭제 (0) | 2022.12.02 |
---|---|
git merge 동작 방식 (fast forward merge) (0) | 2022.12.01 |
git merge 동작 방식 (3-way merge) (0) | 2022.12.01 |
git branch/merge 명령어 및 연습 (0) | 2022.12.01 |
git 명령어 (init, add, commit, restore, log) (0) | 2022.12.01 |