# 다운로드
# 초기설정
git init
git remote add origin [원격 저장소 주소]
git config user.name 이름
git config user.email 이메일
# 파일추가
git add .
git commit -m "커밋 메세지"
# 저장소 업로드 및 다운로드
git push origin master # 저장소 업로드
git push [저장소] [브랜치]
git pull origin master # 저장소 다운로드
git pull [저장소] [브랜치]
# 기타
git log
git status