개발 일기
Git CMD 관리
Cluster-taek
2020. 9. 16. 14:02
반응형
staging area > local repository > remote repository
$ git status : 현재 깃의 상태 확인
$ git clone : remote repository에서 local repository 로 파일 복사
$ git add --all : 폴더 내의 모든 파일을 staging
$ git commit -m "commit 주석" : staging area에서 local repository로 파일 전송
$ git push origin master : remote repository의 origin master branch로 파일 전송
반응형