Staging Area
: 작업중인 디렉토리에서 스테이징 영역에 파일을 올려놓는다
Repository
: 스테이징 영역의 파일을 로컬 저장소에 반영한다
Github Repository
: 로컬저장소의 내역을 깃허브에 반영한다
https://git-scm.com/downloads
버전 확인 -> 정상적으로 설치되었다면 버전이 표시됨
git --version
깃허브 홈페이지에서 개설
다운로드 : https://gitforwindows.org/
git config --global user.name "이름"
git config --global user.email "이메일"
git init
# 지금까지 변형된 모든 파일을 스테이지 위에 올림
git add .
## 특정 파일만 스테이지 위에 올림
git add "특정 파일명"
git commit -m "커밋명"
git remote add origin 깃허브 저장소 주소
git push -u origin master
https://y-oni.tistory.com/159
https://cocoon1787.tistory.com/723