Git는 다른 분기의 특정 파일을 병합합니다.

두 팀은 같은 프로젝트에서 일한다. 그들은 하나의 공통된 문제가 한 측에서 해결되었다는 것을 깨달았지만 각 지점의 업무 상태는 in progress여서 합병을 하는 것은 안전하지 않을 수도 있다.

How to solve this problem?


안전한 해결 방안이 하나 있다. 다른 지점에서 온 특정 파일을 통합하는 것이다.다음 단계는 다음과 같습니다.
$ git checkout <another-branch> <path-to-file> [<one-more-file> ...]
$ git status
$ git commit -m "'Merge' specific file from '<another-branch>'"
이렇게!
Here is a more detailed approach.

좋은 웹페이지 즐겨찾기