-
Notifications
You must be signed in to change notification settings - Fork 0
git 사용법
실외 무인 경비 로봇 edited this page Jun 24, 2019
·
9 revisions
- git config --global user.name "<사용자명>"
- git config --global user.email "<메일 주소>"
- git clone "<github 프로젝트 경로>"
- git pull 또는 git pull "<저장소 repository>" "<브랜치 branch>"
- 예) git pull origin master
git checkout [-b] "<브랜치 branch>"
- git add "<파일>" 또는 git add .
- git commit -m "<설명>"
- git push 또는 git push "<저장소 repository>" "<브랜치 branch>"
- 예) git push -u origin master
- 방법 1) git tag v버전
- 방법 2) git tag -a v버전 -m"설명"
- git tag


