# branch의 이름들이 생각이 안날 때, branch 목록보기
git branch
# branch 이름 변경
git branch -m [기존이름] [변경이름]
# branch 삭제
git branch -d [branch명]
# branch 생성과 checkout(switch)를 동시에 하기
git checkout -b [branch명]
# 현재 파일 상태 확인
git status
# commit 로그 확인
git log
# git 원격저장소 이름과 url 확인
git remote -v
# 저장소에서 폴더만(git log제외) 다운받기
npx degit [username]/[repository name]