GIT1 [Git] push 관련 명령어 정리 [git push 과정] 작업공간 설정 > 준비영역 > 로컬저장소 > 원격저장소 // git push할 작업 영역에서 git init // git commit을 위한 파일 add git add . => 마지막이 .(점) 일경우 전체 파일, 특정 파일만 올리려면 git add [파일명] - add 취소: git restore --staged // add된 상태 확인 git status // add된 파일들 commit하여 push 준비 git commit -m "first commit" - commit 취소: git reset HEAD^ // push할 저장소 위치 설정 git remote add origin [url] - 저장소 삭제: git remote remove origin // 저장소 연결 설정 .. 2023. 12. 26. 이전 1 다음