• git에 github 계정정보 연결 > git config --global user.name 유저네임 > git config --global user.email 계정이메일 > git config --global -l • git 초기화 및 저장소 연결 > git init > git add . > git commit -m "first commit" > git branch -M main > git remote add origin "https://github.com/유저네임/study_ml.git" > git push origin -u main • 로컬에서 작업한 거 원격저장소로 올릴 때 > git push origin -u main • 로컬을 최신화 된 원격저장소 내용으로 수정할 때 > git pull •..