branch 생성
local feature/01 branch 생성
git checkout -b feature/01
remote feature/01 branch 생성
git push origin feature/01
branch 연동
git branch --set-upstream-to origin/feature-01
branch 삭제하기
develop branch로 이동 후 feature/01 branch 삭제
git checkout develop git branch --delete feature/01
수정된 내용이 있거나 commit 한 이력이 남아있는 경우 (local branch 강제 삭제)
git branch -D feature/01
Remote branch 강제 삭제
git push origin :feature/01
'코드와 오류 기록' 카테고리의 다른 글
swift에서 줄바꿈(\n) 안될 때 (0) | 2020.03.13 |
---|---|
R에서 바로 서버에 붙어서 데이터 불러오기 (0) | 2020.02.05 |
Apple distribution certification private key (0) | 2020.01.28 |
Required Info.plist Value Not Found A CFBundleIdentifier value in your Info.plist is required. (0) | 2020.01.17 |
알 수 없는 "libc++abi.dylib: terminating with uncaught exception of type NSException" 오류가 발생하며 꺼질 때 (0) | 2019.08.20 |