git #stash #reset
-
git 사용하기 (1)Practical_skills/git 2019. 7. 13. 22:04
co-working 을 하다보면 효율적인 code관리가 필요하고 그것을 위한 tool이 바로 git이다. 몇가지 시나리오를 통해 깃을 배워보자. stash와 reset에 대한 개념이 없으면 이 글을 이해하기 힘들다. 우선 아래 링크에서 이 개념을 익히고 이글을 보는 것을 추천한다. Problem 1. local branch switching (stash, commit, reset, etc…)by Daejin create and switch to a new branch: git checkout -b new_branch make some changes and add/commit them. make another change but don’t commit. try to switch back the origin..