Git
[#Git] Git 명령어 정리, Config 설정
shab
2020. 8. 6. 15:19
반응형
기본 명령어부터 자주 쓰는 Git 명령어를 정리해 놓으려고 한다
계속해서 추가할 예정
Git Config 설정
git config --global user.name "이름"
git config --global user.email "이메일"
Git Config 확인
git config --list
Git Config 삭제
git config --unset --global user.name
git config --unset --global user.email
원격 저장소 연결 해제
git remote rm origin
혹은
git remote remove origin
반응형