Git 저장소 생성
bash
git init
본인이 저장하고 싶은 디렉토리(파일)에 Git 저장소를 만든다.
Git 세팅하기 (2)
bash
git remote add origin (주소)
git add .
git commit -m "(메세지)"
git push
Git 다시 세팅하기
bash
git remote remove origin