git이 설치되어있는지 확인하기
git --version
git 저장소에 등록된 원격 저장소의 url 조회
git remote -v
로컬 브랜치 중 origin이라는 이름의 원격 저장소를 제거하는 명령어
git remote remove origin
로컬과 원격의 master 브랜치 동시에 삭제하기
git push origin --delete master
기존의 디렉터리를 Git 저장소로 변환하기
git init
복사한 Github 주소 등록
git remote add origin 당신의 깃허브 레파지토리 주소
branch확인
git branch
power shell에서 .git 디렉토리 제거하기
Remove-Item -Recurse -Force .git
원격 저장소에 연결된 이메일 주소 확인
git config --global user.email
원격 저장소와 연결할 이메일 설정하기
git config --global user.email "your.email@example.com"
원격 사용자 정보 확인
git config --global --get user.name