
누군가 git을 사용했던 이력이 있던 경우 리셋하고 가자
git config --system --unset credential.helper
위 방식대로 했는데 안 된 경우
제어판 - 사용자 계정 - 자격 증명 관리자 - Windows 자격 증명 - 일반 자격 증명 - git 관련 자격 증명 편집 (삭제)
git config --global user.name 닉네임
git config --global user.email 이메일
내 github 정보가 로컬 컴퓨터에 정상적으로 세팅되었는지 확인하는 절차
git config --list
정보가 나오면 git 연결완료
git init
git remote add origin 레파지토리주소
git remote -v
git add .
git status
git commit -m "커밋 메세지 작성"
git push origin master
git pull origin master --allow-unrelated-histories