git-기본
( 기존 컴퓨터에 등록된 깃 사용자 정보 변경 시) 깃 사용자 정보 삭제 git config --unset user.name git config --unset user.email git config --unset --global user.name git config --unset --globak user.email 깃 사용자 정보 git config --global core.autocrlf true git config --global user.name '깃허브 사용자이름' git config -- global user.email '깃허브 이메일주소' 정보 확인 git config --global --list 초기화 git init 파일을 상태관리로 등록하기 git add . 파일의 상태관리 상황 확인 g..
2024.01.15