이름
-
git 브랜치 관리카테고리 없음 2018. 1. 18. 14:04
1. 로컬 및 원격 브랜치 삭제 #1. remove the branch from remote reposotirygit push origin --delete #2. remove local branchgit branch -D 2. 로컬 및 원격 브랜치명 변경 #1. rename local branchgit branch -m old_branch new_branch #2. apply to the repositorygit push origin :old_branch 3. 다른브랜치의 특정 Commit 사항만 가져와서 적용하기 git cherry-pick (commit-id) commit id ex > 5f7c23f5c82c82a10541c6da037db99d018389ee 4. 원격 브랜치 내려받기git check..