Skip to content

Instantly share code, notes, and snippets.

@GimYoungPhil
Created April 11, 2016 02:01
Show Gist options
  • Save GimYoungPhil/cd1935dc786cb7e7031f9546b0f55f73 to your computer and use it in GitHub Desktop.
Save GimYoungPhil/cd1935dc786cb7e7031f9546b0f55f73 to your computer and use it in GitHub Desktop.
# 브런치 확인
$ git branch
# 브런치 변경
$ git checkout develop
###수정 작업
# 수정내용 확인
$ git status
# 수정 추가
$ git add .
# 커밋
$ git commit -am “message”
# 리모트 푸쉬
$ git push origin develop
# 마스터브런치 변경
$ git checkout master
# 개발브런치 머지
$ git merge develop
# 마스터브런치 푸쉬
$ git push origin master
# 태그 추가
git tag -a RELEASE-0.0.x -m “message”
# 태그 푸쉬
$ git push origin RELEASE-0.0.x
# 개발브런치 변경
$ git checkout develop
## 젠킨스작업
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment