Outdated PR diff2019 Community Moderator ElectionWhat are some examples of commonly used practices for naming git branches?Git for beginners: The definitive practical guideHow to selectively merge or pick changes from another branch in Git?Git workflow and rebase vs merge questionsHow do you get git to always pull from a specific branch?Showing which files have changed between two revisionsHow do I properly force a Git push?What is the best (and safest) way to merge a Git branch into master?Git diff against a stashVarious ways to remove local Git changes

How do you make a gun that shoots melee weapons and/or swords?

Do black holes violate the conservation of mass?

Idiom for feeling after taking risk and someone else being rewarded

Was it really inappropriate to write a pull request for the company I interviewed with?

Does an unused member variable take up memory?

PTIJ: Who was the sixth set of priestly clothes for?

Playing a 7-string guitar song on a 6-string guitar

Numerical value of Determinant far from what it is supposed to be

One circle's diameter is different from others within a series of circles

Giving a career talk in my old university, how prominently should I tell students my salary?

Origin of the word “pushka”

Translation of 答えを知っている人はいませんでした

Is it appropriate to ask a former professor to order a book for me through an inter-library loan?

Are all players supposed to be able to see each others' character sheets?

What is this tube in a jet engine's air intake?

What is Tony Stark injecting into himself in Iron Man 3?

Is it possible to clone a polymorphic object without manually adding overridden clone method into each derived class in C++?

Should we avoid writing fiction about historical events without extensive research?

Difference between `nmap local-IP-address` and `nmap localhost`

Do Cubics always have one real root?

I can't die. Who am I?

Having the player face themselves after the mid-game

What is better: yes / no radio, or simple checkbox?

What can I do if someone tampers with my SSH public key?



Outdated PR diff



2019 Community Moderator ElectionWhat are some examples of commonly used practices for naming git branches?Git for beginners: The definitive practical guideHow to selectively merge or pick changes from another branch in Git?Git workflow and rebase vs merge questionsHow do you get git to always pull from a specific branch?Showing which files have changed between two revisionsHow do I properly force a Git push?What is the best (and safest) way to merge a Git branch into master?Git diff against a stashVarious ways to remove local Git changes










1















I've had a situation where a PR diff (from a feature branch to master) is different to a diff generated by comparing that ame feature branch to master.



The only thing I can think of is that GitHub 'freezes' the PR diff at the time of creation, and then that diff gets 'outdated' as master moves on (other feature branches get merged in).



Does GitHub 'freeze' PR diffs? If so, is there any way to 'refresh' it? Or is there a different reason for the diffs to be different?










share|improve this question


























    1















    I've had a situation where a PR diff (from a feature branch to master) is different to a diff generated by comparing that ame feature branch to master.



    The only thing I can think of is that GitHub 'freezes' the PR diff at the time of creation, and then that diff gets 'outdated' as master moves on (other feature branches get merged in).



    Does GitHub 'freeze' PR diffs? If so, is there any way to 'refresh' it? Or is there a different reason for the diffs to be different?










    share|improve this question
























      1












      1








      1








      I've had a situation where a PR diff (from a feature branch to master) is different to a diff generated by comparing that ame feature branch to master.



      The only thing I can think of is that GitHub 'freezes' the PR diff at the time of creation, and then that diff gets 'outdated' as master moves on (other feature branches get merged in).



      Does GitHub 'freeze' PR diffs? If so, is there any way to 'refresh' it? Or is there a different reason for the diffs to be different?










      share|improve this question














      I've had a situation where a PR diff (from a feature branch to master) is different to a diff generated by comparing that ame feature branch to master.



      The only thing I can think of is that GitHub 'freezes' the PR diff at the time of creation, and then that diff gets 'outdated' as master moves on (other feature branches get merged in).



      Does GitHub 'freeze' PR diffs? If so, is there any way to 'refresh' it? Or is there a different reason for the diffs to be different?







      git github






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 6 at 22:39









      zoran119zoran119

      4,50763469




      4,50763469






















          1 Answer
          1






          active

          oldest

          votes


















          0














          Essentially yes; Git will freeze the diff of the PR at the point at which the PR was created. If something else has been merged into master subsequent to you creating the PR, the head sections will differ, and as such the diff will also differ.



          In order to see only your changes (and not those made to master in the mean-time), you can use the triple-dot syntax:



          git diff develop...master


          This will essentially show you the "merge base" of these two branches (the last common commit):



          enter image description here



          If additional work is required on the same branch after a pull request is merged, you can still create a subsequent commit on that feature branch and then create a second pull request. This will have the same effect of creating an independent feature branch for the second commit, though this can be useful for tracking associated work. Note that the subsequent pull request would carry the changes from both commits; it contains all of the first commit plus any changes made after it. As such, there is no difference between choosing to merge both pull requests or only merging the latter.






          share|improve this answer

























          • So if it does indeed 'freeze' the diff, does that mean that the set of changes applied to the merge commit when I merge the PR is different to what I'm seeing on the PR screen where I click the merge button?

            – zoran119
            Mar 6 at 23:21










          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55033326%2foutdated-pr-diff%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0














          Essentially yes; Git will freeze the diff of the PR at the point at which the PR was created. If something else has been merged into master subsequent to you creating the PR, the head sections will differ, and as such the diff will also differ.



          In order to see only your changes (and not those made to master in the mean-time), you can use the triple-dot syntax:



          git diff develop...master


          This will essentially show you the "merge base" of these two branches (the last common commit):



          enter image description here



          If additional work is required on the same branch after a pull request is merged, you can still create a subsequent commit on that feature branch and then create a second pull request. This will have the same effect of creating an independent feature branch for the second commit, though this can be useful for tracking associated work. Note that the subsequent pull request would carry the changes from both commits; it contains all of the first commit plus any changes made after it. As such, there is no difference between choosing to merge both pull requests or only merging the latter.






          share|improve this answer

























          • So if it does indeed 'freeze' the diff, does that mean that the set of changes applied to the merge commit when I merge the PR is different to what I'm seeing on the PR screen where I click the merge button?

            – zoran119
            Mar 6 at 23:21















          0














          Essentially yes; Git will freeze the diff of the PR at the point at which the PR was created. If something else has been merged into master subsequent to you creating the PR, the head sections will differ, and as such the diff will also differ.



          In order to see only your changes (and not those made to master in the mean-time), you can use the triple-dot syntax:



          git diff develop...master


          This will essentially show you the "merge base" of these two branches (the last common commit):



          enter image description here



          If additional work is required on the same branch after a pull request is merged, you can still create a subsequent commit on that feature branch and then create a second pull request. This will have the same effect of creating an independent feature branch for the second commit, though this can be useful for tracking associated work. Note that the subsequent pull request would carry the changes from both commits; it contains all of the first commit plus any changes made after it. As such, there is no difference between choosing to merge both pull requests or only merging the latter.






          share|improve this answer

























          • So if it does indeed 'freeze' the diff, does that mean that the set of changes applied to the merge commit when I merge the PR is different to what I'm seeing on the PR screen where I click the merge button?

            – zoran119
            Mar 6 at 23:21













          0












          0








          0







          Essentially yes; Git will freeze the diff of the PR at the point at which the PR was created. If something else has been merged into master subsequent to you creating the PR, the head sections will differ, and as such the diff will also differ.



          In order to see only your changes (and not those made to master in the mean-time), you can use the triple-dot syntax:



          git diff develop...master


          This will essentially show you the "merge base" of these two branches (the last common commit):



          enter image description here



          If additional work is required on the same branch after a pull request is merged, you can still create a subsequent commit on that feature branch and then create a second pull request. This will have the same effect of creating an independent feature branch for the second commit, though this can be useful for tracking associated work. Note that the subsequent pull request would carry the changes from both commits; it contains all of the first commit plus any changes made after it. As such, there is no difference between choosing to merge both pull requests or only merging the latter.






          share|improve this answer















          Essentially yes; Git will freeze the diff of the PR at the point at which the PR was created. If something else has been merged into master subsequent to you creating the PR, the head sections will differ, and as such the diff will also differ.



          In order to see only your changes (and not those made to master in the mean-time), you can use the triple-dot syntax:



          git diff develop...master


          This will essentially show you the "merge base" of these two branches (the last common commit):



          enter image description here



          If additional work is required on the same branch after a pull request is merged, you can still create a subsequent commit on that feature branch and then create a second pull request. This will have the same effect of creating an independent feature branch for the second commit, though this can be useful for tracking associated work. Note that the subsequent pull request would carry the changes from both commits; it contains all of the first commit plus any changes made after it. As such, there is no difference between choosing to merge both pull requests or only merging the latter.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Mar 6 at 22:59

























          answered Mar 6 at 22:43









          Obsidian AgeObsidian Age

          28.2k72344




          28.2k72344












          • So if it does indeed 'freeze' the diff, does that mean that the set of changes applied to the merge commit when I merge the PR is different to what I'm seeing on the PR screen where I click the merge button?

            – zoran119
            Mar 6 at 23:21

















          • So if it does indeed 'freeze' the diff, does that mean that the set of changes applied to the merge commit when I merge the PR is different to what I'm seeing on the PR screen where I click the merge button?

            – zoran119
            Mar 6 at 23:21
















          So if it does indeed 'freeze' the diff, does that mean that the set of changes applied to the merge commit when I merge the PR is different to what I'm seeing on the PR screen where I click the merge button?

          – zoran119
          Mar 6 at 23:21





          So if it does indeed 'freeze' the diff, does that mean that the set of changes applied to the merge commit when I merge the PR is different to what I'm seeing on the PR screen where I click the merge button?

          – zoran119
          Mar 6 at 23:21



















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55033326%2foutdated-pr-diff%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme

          Identity Server 4 is not redirecting to Angular app after login2019 Community Moderator ElectionIdentity Server 4 and dockerIdentityserver implicit flow unauthorized_clientIdentityServer Hybrid Flow - Access Token is null after user successful loginIdentity Server to MVC client : Page Redirect After loginLogin with Steam OpenId(oidc-client-js)Identity Server 4+.NET Core 2.0 + IdentityIdentityServer4 post-login redirect not working in Edge browserCall to IdentityServer4 generates System.NullReferenceException: Object reference not set to an instance of an objectIdentityServer4 without HTTPS not workingHow to get Authorization code from identity server without login form

          2005 Ahvaz unrest Contents Background Causes Casualties Aftermath See also References Navigation menue"At Least 10 Are Killed by Bombs in Iran""Iran"Archived"Arab-Iranians in Iran to make April 15 'Day of Fury'"State of Mind, State of Order: Reactions to Ethnic Unrest in the Islamic Republic of Iran.10.1111/j.1754-9469.2008.00028.x"Iran hangs Arab separatists"Iran Overview from ArchivedConstitution of the Islamic Republic of Iran"Tehran puzzled by forged 'riots' letter""Iran and its minorities: Down in the second class""Iran: Handling Of Ahvaz Unrest Could End With Televised Confessions""Bombings Rock Iran Ahead of Election""Five die in Iran ethnic clashes""Iran: Need for restraint as anniversary of unrest in Khuzestan approaches"Archived"Iranian Sunni protesters killed in clashes with security forces"Archived