이번에는 2대의 환경에서 각각이 다른 브랜치로 작업을 한 경우를 테스트를 해보겠다.
브런치 하나에서 하는거랑 2개에서 하는거랑 별 다를게 없다 ㅋㅋㅋ
이건 그냥 로컬로 브런치를 따서 테스트를... ㅋㅋㅋㅋ
(원격에 있는 깃 서버에서도 똑같은 방식으로 진행을 하면된다.)
일단 branch를 test1, test2로 추가적으로 만들어보자.
$ git branch test1
$ git branch test2
브런치를 생성을해준다.
브런치를 생성을 하면 해당 브런치를 생성을 시킨 브런치의 코드를 그대로 복사가 된다.
checkout을 통해서 브런치를 바꿔가며 코드를 수정을 해보겠다.
우선 master는 그대로 두자
branch name : test1
1
2
3
4
5
6
7
8
9
10
11
|
## 유전알고리즘
### 프로그램 실행
```py
python g.py
```
### class12345677
test123
window
branch test11
| cs |
branch name : test2
1
2
3
4
5
6
7
8
9
10
11
|
## 유전알고리즘
### 프로그램 실행
```py
python g.py
```
### class12345677
test123
window
branch test22
| cs |
C:\Users\mung\Desktop\etc\study\python-gene>git checkout test1Switched to branch 'test1'C:\Users\mung\Desktop\etc\study\python-gene>git add -AC:\Users\mung\Desktop\etc\study\python-gene>git commit -m "branch test1 commit 합니다"[test1 8f86d18] branch test1 commit 합니다1 file changed, 1 insertion(+), 1 deletion(-)Warning: Your console font probably doesn't support Unicode. If you experience strange characters inthe output, consider switching to a TrueType font such as Consolas!
로컬에서 테스트하기 때문에 commit까지만 진행을 하겠다 만약 깃 서버에 있는 브런치에 넣으려면 push origin 브런치이름 해주면 된다.
똑같은 방법으로 test2 브런치도 진행을 한다.
2개의 브랜치 모두 커밋을 완료하였다.
이제 다시 마스터로 돌아가서 머지를 해보자.
C:\Users\mung\Desktop\etc\study\python-gene>git checkout masterSwitched to branch 'master'Your branch is up-to-date with 'origin/master'.C:\Users\mung\Desktop\etc\study\python-gene>git merge test1Auto-merging README.mdCONFLICT (content): Merge conflict in README.mdAutomatic merge failed; fix conflicts and then commit the result.
계속 이것 저것 테스트 하고 있어서 충돌 메시지가 뜨네 ㅋㅋㅋㅋ
머 암튼 잘됬네
이것도 마찬가지로 CONFLICT메시지가 보인다.
깃은 메시지를 잘 띄어주므로 진행이 안된다고 한숨을 쉬지 말고 메시지를 잘 읽자
CONFLICT가뜨면 그냥 소스를 다시 들어가보면 된다. 어딘가 충돌이 났다고 뜬다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
## 유전알고리즘
### 프로그램 실행
```py
python g.py
```
### class12345677
test123
window
<<<<<<< HEAD
branch test2
=======
branch test11
>>>>>>> test1
| cs |
이거 전에 테스트 하려고 놔둔건데 저래 뜨는군
머 암튼 이전 포스트에서도 봤다시피 위쪽이 해당 브런치 아래가 외부에서 유입된 소스이다. 나는 아래꺼로 선택을 하겠다.
아 참고로 로컬에서 merge 작업을 하면 commit id가 아니라 브런치 이름이 뜬다.
1
2
3
4
5
|
<<<<<<< HEAD
branch test2
=======
branch test11
>>>>>>> test1
| cs |
1
|
branch test11
| cs |
C:\Users\mung\Desktop\etc\study\python-gene>git add -AC:\Users\mung\Desktop\etc\study\python-gene>git commit -m "master:[master e2c6eaf] master: C:\Users\mung\Desktop\etc\study\python-gene>git push origin masterUsername for 'https://github.com': pjt3591ooPassword for 'https://pjt3591oo@github.com':Counting objects: 6, done.Delta compression using up to 8 threads.Compressing objects: 100% (6/6), done.Writing objects: 100% (6/6), 589 bytes | 0 bytes/s, done.Total 6 (delta 4), reused 0 (delta 0)remote: Resolving deltas: 100% (4/4), completed with 3 local objects.To https://github.com/pjt3591oo/python-gene.gitd74980c..e2c6eaf master -> master
merge를 시키면 해당 브런치의 그동안의 커밋 내용이 들어온다.
추가적으로 원격 깃 서버에 있는 브런치를 받아와서 작업을 진행을 할 때에는 로컷에서 branch를 만들어서 해당 브런치에서 원격브런치를 pull을 해준후 commit을 하고 checkout을 해서 merge를 시키면 된다. conflic이뜨면 수정을 하고 뜨지 않는다면 그대로 진행을 하면된다.
댓글
댓글 쓰기