Re: [git-users] How does Git storing entire files rather than deltas make it superior?

2019-11-02 Thread Michael
On 2019-11-01, at 12:39 PM, likejudo wrote: > I was wondering if this isn't space inefficient - and how does it become > superior to a VCS by storing snapshots rather than deltas? Some people will cite studies showing that the pack files have better compression than you'd normally expect;

Re: [git-users] How does Git storing entire files rather than deltas make it superior?

2019-11-02 Thread 'Matthias Urlichs' via Git for human beings
On 02.11.19 16:20, Konstantin Khomoutov wrote: > how does it become > superior to a VCS by storing snapshots rather than deltas? Deltas based on what? As soon as there are merge operations, you either run into ambiguities or the code is forced to prefer one branch over the other. Branches and

Re: [git-users] How does Git storing entire files rather than deltas make it superior?

2019-11-02 Thread Konstantin Khomoutov
On Fri, Nov 01, 2019 at 12:39:18PM -0700, likejudo wrote: > In Scott Chacone's book ProGit, he says that Git is different from VCS'es > in that it stores entire files rather than deltas. > I was wondering if this isn't space inefficient - and how does it become > superior to a VCS by storing