Open practice opened 5 years ago
https://koukia.ca/delete-a-local-and-a-remote-git-branch-61df0b10d323
git branch -d branch_name
git push <remote_name> --delete <branch_name>
Or git push remote_name :branch_name
git이 추적하지 않는 untracked files 한꺼번에 삭제하기 https://blog.outsider.ne.kr/1164
git clean -f
를 사용하면 untracked 파일을 모두 지울 수 있고git clean -fd
처럼 -d
옵션을 추가하면 된다.`Answer: What's the best practice to “git clone” into an existing folder? https://stackoverflow.com/a/36084134/575394?stw=2
git remote prune origin