ㅈㄱㄴ
깃 브랜치개념 이해잘되게 설명좀
익명(1.228)
2022-12-30 21:34
추천 0
댓글 11
다른 게시글
-
개발하려면 19금 이런거 깔금하게 게임도 일상생활 하지 말고 겜개발만 [2]SteamPulse(119.195) | 22.12.30추천 0
-
비밀 하드에 공식이 영화 그런거 보관.... 우쩌냐...SteamPulse(119.195) | 22.12.30추천 0
-
ㅇㅋ 다음주 목요일까지 알고리즘만 조진다익명(14.51) | 22.12.30추천 0
-
신입한테 교육시켜주고 알려줬는데 나중에 또 물어봄 [2]익명(211.44) | 22.12.30추천 0
-
MZ세대라는 단어 별로 신경안써봤는데요? [2]재밌는게없..(chermy018) | 22.12.30추천 0
-
6일뒤에 또 놀러가서 뭔가 애매하게 시간 남았는데익명(14.51) | 22.12.30추천 0
-
요즘은 금융권도 MZ세대가 신기술 도입하는듯 [1]익명(211.44) | 22.12.30추천 1
-
디시인사이드 db 구조 한번만 봐주셈 [3]익명(211.176) | 22.12.30추천 0
-
20살 고졸남 하관 꾸미는 법좀 [16]익명(106.101) | 22.12.30추천 0
-
은행앱들은 왜 죄다 성능이 병신인거임?? 이유가모임 [3]익명(rmrt6dlulr92) | 22.12.30추천 0
In Git, a branch is a separate line of development. When you create a branch in your repository, you are creating a copy of the code at that point in time. You can then make changes to the code on the
branch without affecting the code on the main branch (usually called master). This allows you to experiment with new features or bug fixes without impacting the main codebase.
When you are ready to merge your changes back into the main branch, you can create a pull request. This allows other team members to review your changes and discuss any potential issues before they ar
they are merged into the main branch. To create a new branch in Git, you can use the git branch command followed by the name of the new branch. For example:
git branch new-feature
This will create a new branch called new-feature based on the current state of the master branch. To switch to the new branch and start making changes, use the git checkout command followed by the nam
git checkout new-feature
You can then make changes to the code and commit them to the new-feature branch as you would with any other branch. When you are ready to merge your changes back into the master branch, you can use th
git merge command. It's also possible to delete a branch using the git branch -d command, followed by the name of the branch you want to delete. For example:
git branch -d old-feature
This will delete the old-feature branch. Be careful when deleting branches, as any changes that have not been merged into another branch will be lost.