Git Bash CLI
설정 정보
설정 정보 확인
git config --list
사용자명 변경
git config --global user.name <사용자명>
이메일 주소 변경
git config --global user.email <이메일주소>
계정정보 삭제
git config --unset user.name
git config --unset user.email
브랜치 관리
git branch -r // 원격 저장소 브랜치 조회
git push origin --delete <브랜치명> // 원격 저장소 브랜치 삭제
SSH
ssh key 생성
ssh-keygen
댓글남기기