설치
sudo apt-get install git
git init : git working directory 로 설정
git clone 주소 .
git remote
git remote add origin [remote repo 주소]
git add
git add .
git status
git commit
git commit -m [셜명]
git push
git push origin master
git pull
git pull origin [브랜치이름]
git fetch
git fetch <remote>
리모트 저장소에서 데이터를 가져옴/ 모든 브랜치를 로컬에서 접근 가능 Merge나 내용 살펴 볼 수 있음.git branch
git checkout [branch이름]
git push —set-upstream origin [branch이름]
git push origin [branch이름]