Open
Conversation
github 페이지 상에서 수정해보기
Collaborator
Author
Collaborator
Author
|
GitHub에서 "패치(patch)"는 보통 코드 변경 사항을 나타내며, 주로 다음과 같은 상황에서 사용됩니다: Pull Request (PR): GitHub에서 가장 흔하게 패치가 사용되는 곳은 풀 리퀘스트입니다. 풀 리퀘스트는 코드 변경 사항을 저장소에 병합하려는 요청으로, 패치 파일 형태로 변경 내용을 포함할 수 있습니다. PR을 통해 프로젝트 관리자는 코드 리뷰를 수행하고, 변경 사항을 병합할지 결정할 수 있습니다. git diff: GitHub에서는 git diff 명령어를 통해 두 버전 사이의 차이를 패치 형식으로 볼 수 있습니다. 이는 코드의 변경 사항을 추적하고 리뷰하는 데 유용합니다. Commit: 각 커밋은 변경 사항을 포함하는 작은 패치로 볼 수 있습니다. 커밋 메시지와 함께 커밋된 패치는 프로젝트의 이력을 구성하며, 필요한 경우 특정 커밋을 확인하고 변경 내용을 적용하거나 되돌릴 수 있습니다. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

github 페이지 상에서 수정해보기