GitHub에 라식 요청에 나타나는 차이의 구조를 물어봤습니다.
배경
비록 나의 지식이 부족하지만, 지금까지 나는 라식 요청에 나타난 차이가 지점 간의 제출, 원본 코드의'차이'라는 것을 잘못 깨달았다.
며칠 전에 드래그 요청을 만들 때 표시된 제출과 원본 코드의 차이는from과 to에 모두 존재합니다. 신기해서 GitHub에 문의했습니다.
나는 영어를 잘하지 못하기 때문에 대답에 대한 인식이 정확한지 걱정된다...그리고 실례라는 표현을 보내면 안 돼요.
GitHub 컨설팅
문의 양식은 아래 URL입니다.
https://github.com/contact
다음은 GitHub의 답변입니다.
Hi there,
Thanks for reaching out! This sounds like expected behavior, as we show the three-dot diff, or the difference between the most recent version of the head branch and the base branch at the time the head branch was created:
https://git-scm.com/docs/git-diff#git-diff-Comparingbranches
It sounds like you'd rather see a two-dot diff, which would show the changes between the most recent versions of each branch. If you'd like, you can merge the base branch back into the head branch. That would be more likely to show you what you're expecting to see.
Hope that helps clear up some of the confusion!
Regards,
*****
@********
GitHub Support
>Hi, GitHub Support.
>
>I wanted to ask difference of Pull-request.
>
>The other day GitHub page showed me differences of code+ and commit, when I created Pull-request (from to master-branch from feature-branch).
>But, master-branch had alredy the commits (same hash) and the codes (same number of lines) .
>Of cource, feature-a-branch also have it too. I thought it's not difference.
>
>Probably I guess it’s happened by construction(order of hash) of git-log.
>Is something wrong? Could you tell me what to do?
>
>I look forward to your response.
>
>Regards,
>Kenji Ichihashi=
당기기 요청 차이
GitHub의 당김 요청은 지점 간의 차이가 아닙니다($git diff develop.feature)
두 갈래의 조상(모두 인용할 수 있는 약속, 파생된 곳?)HEAD와의 차이점($git diff develop...feature)으로 제작되었습니다.
이번에는 조금 특수한 프로세스로 Git의 자료 라이브러리를 활용하기 때문에 무의식적인 형식의 차이를 보였다.
지점 간의 순수한 차이를 보려면 to지점을from 지점에 통합한 다음 라디에이터 요청을 만들 수 있습니다.
※ 참고:git diff 명령을 사용하여 비교할 때 두 점 (...)그리고 3시(...)차이점은?
마지막
문의에 대한 GitHub의 답장은 근무일 전후로 돌아왔습니다. 아주 좋은 대응입니다.
다만, 자문해야 할 내용, 하지 말아야 할 내용, 정책적인 것은 정해지지 않는다.
만약 누군가가 무엇을 알고 있다면 저에게 알려주시기 바랍니다.
과거에 썼던 Git 관련 글.
Qiita. - 아무것도 모르는 사람이 Git과 GitHub을 독학합니다.
내가 Qiita-git checkout을 할 수 없을 때, 나는 이렇게 할 것이다.
Qiita - 제출 단위로 지점 간 차이점 파악 및 보기
Qiita-git 차이 보기
Reference
이 문제에 관하여(GitHub에 라식 요청에 나타나는 차이의 구조를 물어봤습니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/ikenji/items/7417d4f41ac8b564b36d텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)