반응형
$ vim work.txt
$ vim apple.txt
$ git add .
$ git commit -m "apple content 4"
$ git log --all --graph --oneline
$ git checkout google
$ vim work.txt
$ vim google.txt
$ git add .
$ git commit -m "google content 4"
$ git log --all --graph --oneline
$ git checkout ms
$ vim work.txt
$ vim google.txt
$ git add .
$ git commit -m "ms content 4"
$ git log --all --graph --oneline
$ git log master..apple
$ git log apple..master
1. git log 브랜치A..브랜치B
: 브랜치A와 브랜치B를 비교하여 차이점 확인
$ git log master..apple
commit 9df88c12ba944ebb5be0500ee331d10ef979af34 (apple)
Author: AnKiWoong <ankiwoong@gmail.com>
Date: Sun Jan 5 15:21:57 2020 +0900
apple content 4
반응형
'Python_Beginer > GIT' 카테고리의 다른 글
[GIT]Branch Merge - Merge the same document to another location(브랜치 병합 - 같은 문서 다른 위치 병합) (0) | 2020.01.06 |
---|---|
[GIT]Branch Merge - Merge different files(브런치 병합 - 서로 다른 파일 병합) (0) | 2020.01.05 |
[GIT]Branch Generation(브랜치 생성) (0) | 2020.01.05 |
[GIT]Git Revert(커밋 삭제하지 않고 취소) (0) | 2020.01.04 |
[GIT]Git Reset(특정 커밋으로 취소) (0) | 2020.01.04 |