Giter VIP home page Giter VIP logo

Comments (1)

mhagger avatar mhagger commented on July 28, 2024

It's not possible. Suppose the original diagram is

o - A - B    <- master

and you want to exchange the order of commits A and B while preserving history. The resulting diagram would have to look something like this:

o - A - B
     \ /
      X
     / \
    B'- A'   <- master

(The X simply means that the lines cross, and the dependencies go upwards; e.g., B is a parent of B'.) But this is incorrect, because A is an ancestor of B' (via B), which implies that the state B' includes the changes that were originally made in commit A. But in fact, B' does not include those changes; in the rebased commits, the changes originally introduced by A are only introduced in the delta from B' to A'.

So there is no way to preserve history when reordering commits while also preserving the correct commit ancestry.

(It is possible to use incremental-merge tricks to reorder history, and I hope to write that up soon. But it is impossible to record the result of such a commit-reordering in a history-preserving way.)

from git-imerge.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.