002. [Github] 충돌, 싱크, 커밋 실패 시 쉘에서 해볼만한 것들
Programming/Old 2016. 5. 11. 02:35자주 발생함에도 불구하고 매번 검색해서 하자니 쓸데없이 시간 소모를 많이 하며 뱅뱅 도는 느낌이다.
어차피 암기도 못할 바에는 빠르고 쉽게 접근할 수 있는 곳에 기록하여 시간 소모를 줄여야지!
시도 1. 리셋
1. git fetch origin
2. git reset --hard origin/master
3. git pull
- Fetch will download everything from another repository, in this case, the one marked as "origin".
- Rest will discard cahnges and revert to the mentioned branch, "master" in repository "origin".
- Pull will just get everything from a remote repository and integrate.
시도 2. 머지
출처 : https://githowto.com/merging_back_to_master
1. git checkout master
2. git merge [brach name]
시도 3. undo
1. git reset --hard [head ID]^
-----------------
이 글은 수시로 작성되어야 하는 글이다.
'Programming > Old' 카테고리의 다른 글
004. MS PRISM 정리 (0) | 2016.06.16 |
---|---|
003. WPF / PlaceHolder, Hint, Watermakr가 적용된 TextBox, PasswordBox (3) | 2016.05.26 |
001. [Cocos2d-x] 이미지 로드 실패로 인한 버튼 미생성 (0) | 2016.05.10 |
002. [작성중] 이미지 로딩의 동기 및 비동기 로딩 (0) | 2016.05.10 |
001. 네이티브 플랫폼 별 쿠키 삭제 구현 방법 (0) | 2016.05.05 |