Silver Library (Archived)
[Git] From scratch to merge request 본문
1. Be sure to checkout the branch you want to commit and push. And input git status is recommended based on my standard. So you can see what thing to be happened once you make push command to the branch.
2. Suppose your branch is 'alpha'. Then
git checkout <your branch>
e.g. git checkout alpha
3. git add .
If you want to only add specific files, try git add [specific file name]
e.g. git add Alpha (if it does not work, put format of its file as well)
4. Then, git commit -m "whatever you want to leave note"
5. And you can input git push origin head
head means push this stuff to the current branch you are in now. So, to prevent any mistake.
6. Once this is done, back to your github repository webpage.
Right there, look at the menu and find 'pull request'.
That is 'merge request'. In fact, once you done step 4, you will see pull request like message to encourage you to press that green button from the branch you pushed a moment ago.
7. Press that pull request, and make that request...the only thing you can pay attention is: to where? it would probably be set to default or main branch. Just be careful about it. And that's all I can comment about it for this step.
Then probably the people in your project may review and give permission to merge it to their specific branch.
Useful URL:
'Personal DB > Unclassified record' 카테고리의 다른 글
코로나 현황판 프로젝트 구성 후기 (0) | 2021.11.28 |
---|---|
JavaScript - DB, class/function, countdown, adding keyword (0) | 2021.09.12 |
Record - 8월 26일, React 소규모 독립 프로젝트 (0) | 2021.08.26 |
React Props? (0) | 2021.08.11 |
깃허브 위키 페이지를 만들었습니다. (0) | 2021.06.14 |