풀 (1) 썸네일형 리스트형 [Git] github 자주 쓰는 명령어 모음 : status, add, commit, push, checkout, restore, pull, remote, vi, reset ... 변경 상태 확인하기 $ git status 모든 변경사항 스테이징 (원격저장소에 업로드) $ git add . 스테이징 취소 (add 취소) $ git reset HEAD 파일명.js 커밋 (스테이징된 변경사항을 로컬저장소에 업로드) $ git commit -m "my commit" 가장 최근 커밋을 취소하기 $ git reset HEAD^ 커밋 메시지 수정 $ git commit --amend -m "메시지 수정" 푸시 (로컬저장소 내용을 깃허브에 업로드) $ git push origin main(or master or branch name...) 풀 (깃허브 내용 다운로드 받기) $ git pull origin main(or master or branch name...) (git add 전) 수정한.. 이전 1 다음