Git pullRequest 하기 (터미널)
11 Oct 2018 | git[죄송합니다. 편집중인 문서입니다.]
먼저 새로운 브랜치를 만들고 체크아웃을 동시에 합니다. -b
명령어를 사용합니다.
git:(release/develop) $ git checkout -b helloBranch
작업하고
git:(helloBranch) $ git status
git:(helloBranch) $ git add .
git:(helloBranch) $ git commit -m "done xoxo something"
이후에 서버로 푸시합니다.
git:(helloBranch) $ git push origin helloBranch
푸시하면 다음과 비슷한 결과가 출력됩니다.
Counting objects: 11, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (11/11), done.
Writing objects: 100% (11/11), 1.08 KiB | 1.08 MiB/s, done.
Total 11 (delta 9), reused 0 (delta 0)
remote:
remote: Create pull request for helloBranch:
remote: https://mygit.xxxx.com/projects/repos/dep-ios-app/compare/commits?sourceBranch=refs/heads/helloBranch
remote:
To https://mygit.xxxx.com/scm/depdev/dep-ios-app.git
* [new branch] helloBranch -> helloBranch
이제 helloBranch
를 release/develop
로 머지시켜야 합니다.
이 작업은 ….
…추가로 작업예정.
Comments