git

git pull을 했는데 반응이 없는 문제

MacBookPro:폴더명 내컴터$ git pull

There is no tracking information for the current branch.

Please specify which branch you want to merge with.

See git-pull(1) for details.



    git pull <remote> <branch>



If you wish to set tracking information for this branch you can do so with:



    git branch --set-upstream-to=origin/<branch> master

 

git pull을 했는데 이런 게 나오면서... 동기화된 폴더엔 반응이 없었다.

git pull <git주소> 넣어도 안 됐음.

 

구글링 하다가 git stash 후 git pull 을 하면 해결된다는 글 발견함.

stash 하고 pull 했는데 안 됨. 현재 branch에서 tracking 정보가 없다고 함.

 

git stash 후 git pull <git주소> 넣으니까 됨. 해결.

 

git stash는 하던 작업을 임시로 저장해 두는 건데... 어차피 pull 할 거라 하던 작업 필요는 없었지만.

git stash apply 명령어를 사용하면 stash했던 파일들 다시 가져올 수 있다.

git stash apply // 가장 최근에 stash한 작업 가져오기

git strash apply [stash 이름]