(git bash가 설치되었다는 가정하에)
- github에 올리고 싶은 파일들을 담고있는 폴더 오른쪽 클릭 -> git bash Her
#1
git init
#2 .py file add
git add *.py
#3 write commit msg
git commit -m "py file commit"
#4
git branch -M main
#5
git remote add origin "github repository 주소"
#6 push 했던것들을 원격 저장소에 모두 올리기
git push -u origin main