반응형
$ cd documents
$ cd git
$ git init manual-3
$ cd manual-3
$ vim work.txt
$ git add work.txt
$ git commit -m "work 1"
$ git log --all --graph --oneline
$ git branch o2
$ vim work.txt
$ git commit -am "mater work 2"
$ git log --all --graph --oneline
$ git checkout o2
$ vim work.txt
$ git commit -am "o2 work 2"
$ git log --all --graph --oneline
$ git checkout master
$ git merge o2
$ git log --all --graph --oneline
$ cat work.txt
# title
content
master content 2
# title
content
ow content 2
반응형
'Python_Beginer > GIT' 카테고리의 다른 글
[GIT]2 way merge and 3 way merge (0) | 2020.01.07 |
---|---|
[GIT]Branch Merge - Merge same document locations(브랜치 병합 - 같은 문서 같은 위치 병합) (0) | 2020.01.06 |
[GIT]Branch Merge - Merge different files(브런치 병합 - 서로 다른 파일 병합) (0) | 2020.01.05 |
[GIT]Branch Basic Usage(브런치 기본 사용법) (0) | 2020.01.05 |
[GIT]Branch Generation(브랜치 생성) (0) | 2020.01.05 |