Git 배우기 -2 - Git Command 용어 및 예시


Git 배우기 -2 - Git Command 용어 및 예시

Git Command 용어 git init : Git repository를 directory에 초기화 git add : 수정된 소스 코드를 Staging Area로 추가 git commit -m "any message": Staging Area에 추가된 소스 코드들을 Local Repository에 추가 (메세지 추가할 수 있다) git push : Local Repository에서 변경된 파일들을 Remote Repository에 넣음 git pull : Remote Repository에 모든 변경된 파일들을 내 local Repository에 끌고 옴 git clone : 현재 있는 directory에 url로 명시되어있는 Repository의 복사본을 저장 git status : working di..


원문링크 : Git 배우기 -2 - Git Command 용어 및 예시