Git remote branch, local branch 동기화

Sync branch

Git 소스를 받아 로컬에 작업을 하다 보면, 원격에 있는 브렌치와 로컬에 있는 브렌치가 동기화가 되지 않은 경우가 있다.
예를 들어, 원격에서는 삭제된 브렌치가 로컬에만 남아 있는 경우가 대표적이다.

그럴 경우에 아래 명령어로 동기화를 할 수 있다.

git remote prune origin
% git remote prune origin
Pruning origin
URL: https://git.devkuma.com/devkuma/devkuma-hugo-blog.git
 * [pruned] origin/feature/ISSUE-10-fix-code
 * [pruned] origin/feature/ISSUE-13-refactoring
 * [pruned] origin/feature/ISSUE-26-add-page



최종 수정 : 2023-03-10