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
'Tools' 카테고리의 다른 글
[Docker] 호스트(Host)의 원본 파일을 도커 컨테이너(docker container) 로 복사하기, 도커 컨테이너에서 호스트로 복사하기 (0) | 2020.01.29 |
---|---|
[VirtualBox] 기본메뉴(영문) (1) | 2020.01.24 |
[Git&Github] git 명령어 (0) | 2020.01.05 |
[Docker] 도커(Docker) 명령어(CLI: Command-Line Interfaces) (0) | 2019.11.30 |
[Docker] 맥(Mac)에 도커(Docker) 설치(Install Docker on Mac)하고 오라클(Oracle) 접속까지 하기 (0) | 2019.11.30 |