checkout에서 브랜치를 변경하는 부분만 담당
$ git switch develop
'develop' 브랜치로 전환합니다
$ git switch -c new-branch
새로 만든 'new-branch' 브랜치로 전환합니다
워킹 트리의 파일을 복원해 주는 역할
파일의 수정 내용(README.md 파일을 수정했다고 했을 때)을 복원하려면
git checkout -- README.md처럼 사용했는데 이젠 다음과 같이 사용할 수 있다.
$ git restore README.md
$ git restore .
https://blog.outsider.ne.kr/1505
https://git-scm.com/docs/git-restore