# 로컬 폴더에서 Git 초기화 및 파일 추가 git init git add . git commit -m "Initial commit" # GitHub 저장소 연결 git remote add origin [내 GitHub 저장소 주소] git branch -M main git push -u origin main