I can't believe people spent time doing this and they eventually published it.
So how can you explain the fact that it clearly exists then?
Version control without Git
41–50 of 68 posts
Re: Version control without Git
#42Re: Version control without Git
#43Can't believe I just got rickrolled from a hackernews post
Re: Version control without Git
#44I thought this was cute. I (mostly?) “get” git. At least all of what was shown was formerly known to me. I would have added a section about how keeping the commit numbers straight is a a pain and then demonstrated how we could just index them with a hash (md5sum or similar). I thought about sharing this tutorial(?) with some of my “git is kinda fuzzy” colleagues, but I realized that they often seem fuzzy in the basic…
The use of `diff` and `patch` to express merge is something interesting that I only learned from reading this article.
Re: Version control without Git
#45Re: Version control without Git
#46Coming from RCS, CVS, SVN to Git, git is a game changer - yes everyone knows that. But what was astonishing me most was the version system build into the VMS OS file system.
> ...version system build into the VMS OS file system. That was more of "versioning" than "version control" system. It simply automated the sequential numbering of the saved instances of a file. The versions were not deltas, just normal files, the version number being part of file specification: name.ext;ver As much as one can do with versions was diff, purge and file operations, basically, no change annotation or hi…
Re: Version control without Git
#47Earlier quoted context omitted.
The use of `diff` and `patch` to express merge is something interesting that I only learned from reading this article.
Wow! Ok, in like 199x and before, folks were sharing fixes by posting diff/patch files on like Usenet and stuff. It was wild. After CVS, SVN now on git, I mean, I have nostalgia but I don't miss it.
Re: Version control without Git
#48Earlier quoted context omitted.
The use of `diff` and `patch` to express merge is something interesting that I only learned from reading this article.
Wow! Ok, in like 199x and before, folks were sharing fixes by posting diff/patch files on like Usenet and stuff. It was wild. After CVS, SVN now on git, I mean, I have nostalgia but I don't miss it.
Re: Version control without Git
#49Title is horribly incorrect. Simulating git would be more appropriate. I expected this to be a look at other version control systems around today. It's yet another 'let's recreate git from scratch, kinda' post.
> I expected... In fairness, it very clearly describes what it is doing in the initial lines: “In this tutorial I’ll try to describe how git works”. So it isn't intending to suggest an alternative for git, but just to show what git does for you and, to an extent, how.
Re: Version control without Git
#50https://tom.preston-werner.com/2009/05/19/the-git-parable.ht...