* SCM ideas from 2003
@ 2005-04-19 3:38 Kevin Smith
2005-04-19 5:31 ` Marc Girod
0 siblings, 1 reply; 4+ messages in thread
From: Kevin Smith @ 2005-04-19 3:38 UTC (permalink / raw)
To: git
I just stumbled across this page, dated 2003, which foreshadows a couple
of the decisions Linus has made for git:
http://ydirson.free.fr/en/software/scm/vc.txt
Here are the parts that particularly caught my eye:
"what's so special about files ?" where the author suggests that
existing SCM systems are so blinded by the tradition of file orientation
that they can't see that there might be alternatives.
"As a goodie we can even note that moving a file inside the hierarchy
has become exactly similar as moving a code statement." where the author
recognizes that renames are merely a special case of code moves.
His implementation ideas are quite different from git, but I thought it
was pretty cool to find that someone was thinking about these ideas a
couple years ago.
Kevin
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: SCM ideas from 2003
2005-04-19 3:38 SCM ideas from 2003 Kevin Smith
@ 2005-04-19 5:31 ` Marc Girod
2005-04-19 8:07 ` A VFS layer - was: " Jon Seymour
0 siblings, 1 reply; 4+ messages in thread
From: Marc Girod @ 2005-04-19 5:31 UTC (permalink / raw)
To: git
>>>>> "KS" == Kevin Smith <yarcs@qualitycode.com> writes:
KS> "what's so special about files ?" where the author suggests that
KS> existing SCM systems are so blinded by the tradition of file
KS> orientation that they can't see that there might be alternatives.
Correct: file orientation is eventually a limitation.
But there are other dimensions to investigate in order to overcome it.
The issue is to offer a *location* for the possible versions -- not
only sequential changes but also alternatives.
A directory may be considered as a namespace.
Note that there are other cases of 'containers': archives, packages,
libraries, etc...
--
Marc Girod P.O. Box 323 Voice: +358-71 80 25581
Nokia BI 00045 NOKIA Group Mobile: +358-50 38 78415
Valimo 21 / B616 Finland Fax: +358-71 80 64474
^ permalink raw reply [flat|nested] 4+ messages in thread
* A VFS layer - was: SCM ideas from 2003
2005-04-19 5:31 ` Marc Girod
@ 2005-04-19 8:07 ` Jon Seymour
2005-04-19 23:13 ` Stéphane Fillod
0 siblings, 1 reply; 4+ messages in thread
From: Jon Seymour @ 2005-04-19 8:07 UTC (permalink / raw)
To: Marc Girod, git
On 19 Apr 2005 08:31:42 +0300, Marc Girod <girod@shire.ntc.nokia.com> wrote:
> >>>>> "KS" == Kevin Smith <yarcs@qualitycode.com> writes:
>
> KS> "what's so special about files ?" where the author suggests that
> KS> existing SCM systems are so blinded by the tradition of file
> KS> orientation that they can't see that there might be alternatives.
>
> Correct: file orientation is eventually a limitation.
>
> But there are other dimensions to investigate in order to overcome it.
> The issue is to offer a *location* for the possible versions -- not
> only sequential changes but also alternatives.
>
> A directory may be considered as a namespace.
> Note that there are other cases of 'containers': archives, packages,
> libraries, etc...
>
Of course, it is not just SCM's that are "blinded" by file orientation
- every other tool (editors, compilters, etc) that we use has this
orientation. An SCM really has to have some notion of file
orientation, at least at the UI level, because every other tool we use
has the same orientation. The ENVY/VisualAge environments tried to
work with a pure class-level orientation and in some ways that was
great, but most developers hated it precisely because it removed the
file orientation and hence their ability to work with their favourite
tools. IBM/OTI saw the light which is why Eclipse is avowedly a
file-oriented platform.
It seems to me that file-orientation is here to stay and it would be
really cool to layer some kind of virtual filesystem over the git
repository so that different trees become transparently accessible via
different branches of a file system, e.g.:
/mnt/gitfs/working # some kind of writeable
virtual directory over the git cache
/mnt/gitfs/c157067185209b50b350571fe762c2740ea13fc1 # read-only
tree of commit c157...
/mnt/gitfs/5b53d3a08d64198d26d4f2323f235790c04aeaab # read-only
tree of comit 5b53...
Given the purity of Linus' concept and his natural orientation towards
file systems rather than SCMs, this seems like a rather natural thing
to do. If anyone is planning to do this and wants a helper, count me
in!
jon.
--
homepage: http://www.zeta.org.au/~jon/
blog: http://orwelliantremors.blogspot.com/
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: A VFS layer - was: SCM ideas from 2003
2005-04-19 8:07 ` A VFS layer - was: " Jon Seymour
@ 2005-04-19 23:13 ` Stéphane Fillod
0 siblings, 0 replies; 4+ messages in thread
From: Stéphane Fillod @ 2005-04-19 23:13 UTC (permalink / raw)
To: git
Jon Seymour <jon.seymour <at> gmail.com> writes:
[...]
> It seems to me that file-orientation is here to stay and it would be
> really cool to layer some kind of virtual filesystem over the git
> repository so that different trees become transparently accessible via
> different branches of a file system, e.g.:
> /mnt/gitfs/working # some kind of writeable virtual
directory over the git cache
> /mnt/gitfs/c157067185209b50b350571fe762c2740ea13fc1 # read-only tree of
commit c157...
> /mnt/gitfs/5b53d3a08d64198d26d4f2323f235790c04aeaab # read-only tree of
comit 5b53...
Ah, you mean wrapping the libgit in a FUSE plugin and let
the Linux pagecache/dentry cache do the caching of on-demand
inflated blobs and indexes? Would the hash be the "inode number"?
--
Stephane
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2005-04-19 23:18 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-04-19 3:38 SCM ideas from 2003 Kevin Smith
2005-04-19 5:31 ` Marc Girod
2005-04-19 8:07 ` A VFS layer - was: " Jon Seymour
2005-04-19 23:13 ` Stéphane Fillod
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).