git --version

: 버전 확인.

 

git --help

 

git clone

: 한 개의 인수 사용. 

  저장소 전체를 복제 함.

 

git diff

: 두 개의 인수 사용. 두 개의 인수 사용시.

  두개의 소스를 비교 함.

 

git log

인수 없음.

  로그 보여 줌.

 

git checkout

한 개의 인수 사용.

  저장소의 commit 위치를 설정.

 

-- 설정

git init

: git 설정 파일을 만듦.

 

git status

: 상태 보여 줌.

 

git add

: commit 될 변경 사항으로 파일이 바뀜.

 

git commit

 

[COMMIT_EDITMSG]

Add file1

 

# Please enter the commit message for your changes. Lines starting

# with '#' will be ignored, and an empty message aborts the commit.

# On branch master

# Changes to be committed:

# new file:   file1.txt

 

#

 

git reset

: 소스를 변경 이전으로 되돌림.

 

728x90

+ Recent posts