728x90
Check current branch
35mwl@remoted MINGW64 ~/OtpServer (master)
$ git branch
* master
# current branch was checked with * mark
check out current branch to child branch
$ git checkout "child_branch"
After checking out, merge master into child_branch to use IntelliJ or command like "git merge master"
"git merge master" means to merge "master" into "child_branch" or others.
With conflicted between master and child, merge will be failed. In this case, recommend to use IDE tools for Debug
Quote
https://heestory217.tistory.com/38
'Env Setting > Git' 카테고리의 다른 글
[IntelliJ] How to merge (0) | 2024.03.20 |
---|---|
How to find the hash of branch in Git? (1) | 2024.03.18 |
When to Git Clone SSL certificate issue (0) | 2024.03.15 |
[RESET] git reset 조지기 (32) | 2023.12.12 |
GIT BASH에서 FATAL: PROTOCOL 'HTTPS' IS NOT SUPPORTED 에러가 날 때 (62) | 2023.03.23 |