파게로그
commit에 대한 기본적인 명령어들 본문
항시 사용하는 명령어
(리눅스 명령어) 현재 디렉터리의 파일 목록ls -al
(리눅스 명령어) 내용 확인cat f1.txt
repository의 파일 상태 확인git status
commit 로그 확인git log
처음에 사용하는 명령어
repository 디렉터리에서 사용
git init
git config --global user.name ddoongi
git config --global user.email [ddoongi@google.com](mailto:ddoongi@google.com)
commit
git add f1.txt
git commit
변경 사항 보기
git log -p
commit과 commit 사이 소스상 차이 확인 가능
git diff \[commitId3\]..\[commitId1\]
git diff
commit 전 수정상황 확인의 마지막 기회
reset vs revert
git reset \[commitId\] --hard
commitId의 상태를, 최신 상태로 하여 되돌리고 하고 싶을 때
'콤퓨타 왕기초 > Git' 카테고리의 다른 글
Git을 연습할 수 있는 사이트 (0) | 2020.11.04 |
---|---|
branch 만들기 (0) | 2020.10.24 |
Comments