[GIT] remote

개발자/GIT | 2014. 1. 14. 16:41

$ git push --dry-run origin master

원격저장소에 push하기 전에 시뮬레이션


$ git fetch

$ git merge origin/master

   - 충돌(Conflict) 

       

   - 충돌 수정 후 add & commit & push

$ git add hello

$ git commit -am 'conflit..'

$ git push origin hotfix


$ git pull origin master

$ git pull


$ git fetch


$ git branch -a


$ git checkout -b hotfix

$ git branch -a


$ git pull origin hotfix

'개발자 > GIT' 카테고리의 다른 글

git 삭제 파일 복구  (0) 2017.06.21
[PHP] Phalcon develop tool  (0) 2014.01.21
[GIT] Git Repository with Eclipse  (0) 2014.01.16
[GIT] github ssh & remote  (0) 2014.01.14
[GIT] 터미널 Color UI 적용  (0) 2014.01.08
,