git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* change inside PR not reflected in the resulting squash commit
@ 2019-05-31 21:03 ARAM MALIACHI
  2019-06-02 20:11 ` Philip Oakley
  0 siblings, 1 reply; 2+ messages in thread
From: ARAM MALIACHI @ 2019-05-31 21:03 UTC (permalink / raw)
  To: git, v-armal

I’m an Azure DevOps support engineer for Microsoft. Prior to composing
this communication to the Git team I had a conversation with the
Product Group from Azure DevOps stating this could be expected
behavior, truth is they didn’t take the time to analyze this with me
stating our PR system does nothing extra to the regular Git tool.
However I’m still suspicions about it since I consider myself advanced
in Git workflows.
Customer completed a PR from release/Pl4S1R4 into master. PR's id 5238.
Several commits made up this PR: 15 approximately were added to the
source branch release/Pl4S1R4 while the PR was active.
2 out of 15 commits made the exact same change to the exact same file
on the exact same lines. One of these two commits was committed to
source branch directly and the other one is a squash merge commit that
resulted from another PR completion to source branch coming from a 3rd
branch while the original PR 5238 was active.
Specifically commits [descending order]:
13ade36d - squash commit of a third branch coming into source branch
42940662 - commit made directly to the source branch
Specifically, both commits include along many changes the following
change to file /src/components/Layout/Menu.vue on line 80 and line 91
Original version of file line 80 and 91:
80   {{menuOptions.NETWORK}} {{'v'}}
91   {{network.name}} {{'v'}}
Resulting version of the file in line 80 and 91 for both commits:
80   {{menuOptions.NETWORK}}
91   {{network.name}}
The weird thing which raises a flag for me is that making the same
change to the exact same file 2 times wouldn't even be possible at all
since first change would make its current status the desired one and
therefore the next commit with the same change wouldn't even highlight
the lines as change. I believe this could be due to the nature of the
second commit coming from a PR completion [squash] where maybe the
file was kept unchanged.
What I would expect here is that the PR would read the file and would
ignore the second change made by squash commit since this exact change
had already taken place previously.
Above all this despite the PR having 2 commits highlighting the exact
same change on a file, the resulting squash commit ignored them both
and showed the lines 80 and 91 in the affected file as untouched.
I carefully verified with cx that no other commit would 'revert' this
two changes or even edit the file /src/components/Layout/Menu.vue
again so it seems like the system indeed ignored them both on its own.
Note that other changes to different lines of the affected file were
recorded correctly in the resulting squash commit once PR was
completed.

Due to the complexity of cx's environment, I haven't been able to
reproduce the issue myself, but the proof is inside the PR stored in
cx's Project.

--

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: change inside PR not reflected in the resulting squash commit
  2019-05-31 21:03 change inside PR not reflected in the resulting squash commit ARAM MALIACHI
@ 2019-06-02 20:11 ` Philip Oakley
  0 siblings, 0 replies; 2+ messages in thread
From: Philip Oakley @ 2019-06-02 20:11 UTC (permalink / raw)
  To: ARAM MALIACHI, git, v-armal

Hi Maliachi,
It's a quiet night. I'll have a go...
I have spaced out your text..

On 31/05/2019 22:03, ARAM MALIACHI wrote:
> I’m an Azure DevOps support engineer for Microsoft. Prior to composing
> this communication to the Git team I had a conversation with the
> Product Group from Azure DevOps stating this could be expected
> behavior, truth is they didn’t take the time to analyze this with me
> stating our PR system does nothing extra to the regular Git tool.
PR systems can add extra processing steps which allow the flow to be 
more complex that at first glance. Not sure which PR admin system this 
one is..
> However I’m still suspicions about it since I consider myself advanced
> in Git workflows.
> Customer completed a PR from release/Pl4S1R4 into master. PR's id 5238.
This will be a series at a specific base commit.
> Several commits made up this PR: 15 approximately were added to the
> source branch release/Pl4S1R4 while the PR was active.
extras, extras, opportunity for confusion...
> 2 out of 15 commits made the exact same change to the exact same file
> on the exact same lines.
Be wary of terminology here. If the _final_ series was linear without 
merges, then such diffs don't exist, hence the assumption is fallacious.
>   One of these two commits was committed to
> source branch directly
So you have a 'side' branch change, and the PR later merges with this.
>   and the other one is a squash merge commit that
> resulted from another PR completion
A further 'side' branch (for the squash series), and later merges into 
the PR.
>   to source branch coming from a 3rd
> branch while the original PR 5238 was active.

> Specifically commits [descending order]:
> 13ade36d - squash commit of a third branch coming into source branch
> 42940662 - commit made directly to the source branch
> Specifically, both commits include along many changes the following
> change to file /src/components/Layout/Menu.vue on line 80 and line 91
> Original version of file line 80 and 91:
> 80   {{menuOptions.NETWORK}} {{'v'}}
> 91   {{network.name}} {{'v'}}
> Resulting version of the file in line 80 and 91 for both commits:
> 80   {{menuOptions.NETWORK}}
> 91   {{network.name}}
I.e. you have clean (non) merges! they all agree on the right final 
answer. These merges have other content, so have sufficient diffs to 
look interestingly complete, while their earlier commits on the side 
have diffs that give you to think that there are identical changes 
within the PR (rather than being outside of the series)

Have a look at the new "--rebase-merges" (and the discussion threads) 
for some of the issues about bringing in disparate changes via merging in.
> The weird thing which raises a flag for me is that making the same
> change to the exact same file 2 times wouldn't even be possible at all
> since first change would make its current status the desired one and
> therefore the next commit with the same change wouldn't even highlight
> the lines as change. I believe this could be due to the nature of the
> second commit coming from a PR completion [squash] where maybe the
> file was kept unchanged.
I guess it is a time flow disconnect (things you thought static 
changed), and perhaps history simplification (the graphs missed 
important bits) that has caused the confusion (assuming I have 
understood the problem statement, and guessed right as to the 
awkwardness of explaining it)
> What I would expect here is that the PR would read the file and would
> ignore the second change made by squash commit since this exact change
> had already taken place previously.
> Above all this despite the PR having 2 commits highlighting the exact
> same change on a file, the resulting squash commit ignored them both
> and showed the lines 80 and 91 in the affected file as untouched.
> I carefully verified with cx that no other commit would 'revert' this
> two changes or even edit the file /src/components/Layout/Menu.vue
> again so it seems like the system indeed ignored them both on its own.
> Note that other changes to different lines of the affected file were
> recorded correctly in the resulting squash commit once PR was
> completed.
>
> Due to the complexity of cx's environment, I haven't been able to
> reproduce the issue myself, but the proof is inside the PR stored in
> cx's Project.
It should be able to make a toy example with a similar profile. just 
make sure that you have a full DAG covering the three PR series (master 
branch initial state, PR5238, squash-PR, direct commit PR, final state) 
You'll only need a few commits on each. It will be a worthwhile learning 
exercise for you, and to show to colleagues.
--
Philip
PS I could be wrong.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-06-02 20:11 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-31 21:03 change inside PR not reflected in the resulting squash commit ARAM MALIACHI
2019-06-02 20:11 ` Philip Oakley

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).