Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

git branch 삭제 #53

Open
occidere opened this issue Jan 25, 2019 · 0 comments
Open

git branch 삭제 #53

occidere opened this issue Jan 25, 2019 · 0 comments
Assignees
Labels

Comments

@occidere
Copy link
Owner

git branch 삭제

원격 브랜치 삭제

git push $remote_name --delete $branch_name

로컬 브랜치 삭제

# --delete 와 동일
git branch -d $branch_name

# --delete-force 와 동일 (커밋 안됨 등의 머지 상태와 무관하게 강제 삭제)
git branch -D $branch_name

참고

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant