Live data from Hacker News

Git is the next Unix

advogato.org

11–20 of 20 posts

Re: Git is the next Unix

#11
post #2

"... Numerous people have written diff and merge systems for wikis; TWiki even uses RCS. If they used git instead, the repository would be tiny, and you could make a personal copy of the entire wiki to take on the plane with you, then sync your changes back when you're done. ..." Now that is a compelling idea. How portable is git? ~ en.wikipedia.org/wiki/Git_(software)

check out ikiwiki - http://ikiwiki.info/ - it backends to both git (and svn) to do this - git allows offline work.

"... check out ikiwiki ..."

Did, pretty smart & is what I was interested in. Do you know of any python language bindings? Doesn't seem to be any around, at least as far as I can see.

Re: Git is the next Unix

#13
This guy is mistaken. It's not good enough to track large files. So I think it's very unlikely that it's what one needs to deal with all of our data needs. It works for small files and big trees of source, but personal data is not like that. The trees are shallow and the files huge. How many people here like to keep their home directory in source control system.

Re: Git is the next Unix

#15
post #12

bzr is a far nicer RCS. http://bazaar-vcs.org/ And the next Unix, Plan 9 from Outer Space, but really from Bell Labs, had already implemented the ideas in its Venti filesystem. http://en.wikipedia.org/wiki/Venti

bzr is fine, as long as you don't want to refactor anything. Ever.

(it doesn't track moving lines between files)

Re: Git is the next Unix

#16

Git is good at what it was designed to do (manage and distribute changes to source code) but that's not what most people need. Non-programmers are a lot better off with simpler things like OSX Time Machine and iDisk. That said there seems to be a lot of effort duplicated at the file-system level and at the version-control level. I hope file systems of the future will expose nicer api's (e.g. change logging) to help v…

One could also develop a separate kernel API for version control. Filesystems without version control would just have null operations in this API, while filesystems with version control would root around in their database for the change information.

Re: Git is the next Unix

#18
post #5
post #2

"... Numerous people have written diff and merge systems for wikis; TWiki even uses RCS. If they used git instead, the repository would be tiny, and you could make a personal copy of the entire wiki to take on the plane with you, then sync your changes back when you're done. ..." Now that is a compelling idea. How portable is git? ~ en.wikipedia.org/wiki/Git_(software)

My friend looked into porting git to Win32 natively and abandoned the effort because Git uses a ton of UNIX-isms, from fork() to sh scripts.

I read that git was written to intentionally use every trick available in Linux for performance. Mercurial has similar features, but it's much more agreeable to cross-platform work. Mozilla uses it.

Re: Git is the next Unix

#19

It's also the next Unix in that it's kind of hard to use for newbies, and shits all over your data when you do something that seems like a routine action (git revert anyone?), but in fact will tell it to self-destruct. svn is emphatically not this way, which, when you aren't doing anything distributedly and don't have very many branches, is happy.

Agreed. SVN is much more user friendly than GIT (command line interface).

The major reason I haven't made the switch from CVS/SVN yet (and am unlikely to).

Re: Git is the next Unix

#20
post #19

It's also the next Unix in that it's kind of hard to use for newbies, and shits all over your data when you do something that seems like a routine action (git revert anyone?), but in fact will tell it to self-destruct. svn is emphatically not this way, which, when you aren't doing anything distributedly and don't have very many branches, is happy.

Agreed. SVN is much more user friendly than GIT (command line interface). The major reason I haven't made the switch from CVS/SVN yet (and am unlikely to).

I'm struggling with this though I can tell it will be well worth it.

Try the peepcode git tutorial, which includes info on migrating from svn.

Post reply on HN