본문 바로가기

Git

[git] 폴더 내부 파일들 commit

(git bash가 설치되었다는 가정하에)

  1. 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