기본 Git 명령어 git pull : remote된 master의 소스를 땡겨온다 > 만약 아래와 같이 local 파일이 overwritten된다면 error: Your local changes to the following files would be overwritten by merge: //file list Please commit your changes or stash them before you merge. > incoming change과 current change 을 결정해서 해결해야 한다. Rebase 와 Merge temp라는 브랜치를 만들어서 Rebase하여 소스를 merge하는 방법을 알아보자. //temp의 branch를 만들어서 master에 merge할 수 있는 최신화 branc..