git branch 삭제 (1) 썸네일형 리스트형 [#. Git] Git 명령어 모음(업데이트 예정) branch 삭제 local branch `main` 삭제 git branch -d main remote branch `main` 삭제 git push origin -d main Commit 취소 git reset 옵션에는 --soft --mixed --hard가 있다 git push -f origin 변경 사항 되돌리기 git checkout -- # git checkout -- ./views/signUp/signup.js Stash 아직 마무리하지 않은 작업을 스택에 잠시 저장하고 다른 작업을 할 수 있다 # 임시로 저장하기 git stash # stash 목록 확인하기 git stash list # stash했던 내용 가져오기(stash list에는 아직 존재) git stash apply # 최근.. 이전 1 다음