git init - creates a new Git repository

(새로운 Git 저장소(repository)를 만드는 명령어)

git status - inspects the contents of the working directory and staging area

(워킹 디렉토리와 스테이징 에어리어의 내용물들을 검사하는 명령어)

git add - adds files from the working directory to the staging area

(워킹디렉토리의 파일들을 스테이징 에어리어로 저장시키는 명령어)

git diff - shows the difference between the working directory and the staging area

(워킹디렉토리와 스테이징 에어리어 사이의 차이점을 보여주는 명령어)

git commit - permanently stores file changes from the staging area in the repository

(영구적으로 스테이징 에어리어의 파일 변화를 저장소(repository)에 저장하는 명령어

git log - shows a list of all previous commits

(이전 모든 커밋들을 리스트로 보여주는 명령어)

 

+ Recent posts