[git-users] Re: git as database

2009-12-14 Thread Marek Wywiał


On 14 Gru, 19:47, Ido Ran  wrote:
> It sure look like it's something like this.
> Is gimd a google project?

I'm not sure, but developers has @google.com emails :)

>
> Thanks.
>
> On Dec 14, 3:48 pm, Marek Wywiał  wrote:
>
>
>
> > On 14 Gru, 13:33, Ido Ran  wrote:
>
> > > Hi,
> > > I've been thinking (and drawing) about using git as backend database
> > > for full revision database system.
> > > I've reach some conclusions and like to know what you think:
> > >   The reason git is so easy to use by SCM systems is because source
> > > control database always has a single point of entry which is the root
> > > directory. Everything rechable from that root is part of the version.
> > >   In general database system there are many roots. For example in CRM
> > > system the roots may be customers, services, employees, departments
> > > (and more). This fact make the Version object of git much more
> > > complicated then file system database.
>
> > > Let's start with this point and see how it goes from there.
>
> > something like that?
> >  *http://code.google.com/p/gimd/

--

You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To post to this group, send email to git-us...@googlegroups.com.
To unsubscribe from this group, send email to 
git-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/git-users?hl=en.




[git-users] Re: git as database

2009-12-14 Thread Ido Ran
It sure look like it's something like this.
Is gimd a google project?

Thanks.

On Dec 14, 3:48 pm, Marek Wywiał  wrote:
> On 14 Gru, 13:33, Ido Ran  wrote:
>
> > Hi,
> > I've been thinking (and drawing) about using git as backend database
> > for full revision database system.
> > I've reach some conclusions and like to know what you think:
> >   The reason git is so easy to use by SCM systems is because source
> > control database always has a single point of entry which is the root
> > directory. Everything rechable from that root is part of the version.
> >   In general database system there are many roots. For example in CRM
> > system the roots may be customers, services, employees, departments
> > (and more). This fact make the Version object of git much more
> > complicated then file system database.
>
> > Let's start with this point and see how it goes from there.
>
> something like that?
>  *http://code.google.com/p/gimd/

--

You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To post to this group, send email to git-us...@googlegroups.com.
To unsubscribe from this group, send email to 
git-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/git-users?hl=en.




Re: [git-users] GIT on windows ...

2009-12-14 Thread Michael P. Soulier
On 14/12/09 Marcello Henrique said:

> This is a option [0].
> 
> [0] http://code.google.com/p/msysgit/

Yeah, it didn't work for me when I tried it.

Mike


pgpwjvdCV6lmV.pgp
Description: PGP signature


[git-users] Re: GIT on windows ...

2009-12-14 Thread Konstantin Khomoutov
On Dec 13, 7:39 pm, Mark Rosenberg 
wrote:
> There appear to be several options with respect to GIT clients, UIs,
> etc for use on the Windows XP platform. As someone about to start
> using GIT, I'd appreciate learning from this form which of the various
> options are best (and worst).
Use msysgit [1] -- it contains most of the usual Git tools and is
native (that is, does not require installation and maintenance of
Cygwin).
As it is constantly evolving, it is recommended to grab the latest
(beta) version.
Before starting, be sure to read the provided README file and check
the wiki.
This is because the "impedance mismatch" between POSIX and Windows
is way too high in some cases and making certain things work requires
performing certain documented tricks.

Msysgit has at least two "conventional" GUI tools packaged: gitk and
git-gui.
It's enough for the most typical usage scenario.
If you need Explorer integration, check TortoiseGit [2] and Git
Extensions [3].
There is also "Git Cheetah" [4] -- a GUI tool from msysgit folks aimed
at
cross-platform (!) integration to different "file managers" (including
Explorer on Windows), but I'm not sure it's production-grade quality
already.

Also beware of these cross-platform interoperability issues:
* There's no way to reliably manage files with non-ASCII filenames
  across diffrent platforms (Windows and POSIX).
* If you intend to use non-ASCII characters in your commit messages,
  be sure to read the relevant section of the git-log manual page,
  pick a suitable strategy to cope with the problem and and tune
  your setup accordingly.

1. http://msysgit.googlecode.com
2. http://code.google.com/p/tortoisegit/
3. http://code.google.com/p/gitextensions/
4. http://code.google.com/p/msysgit/wiki/GitCheetah

--

You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To post to this group, send email to git-us...@googlegroups.com.
To unsubscribe from this group, send email to 
git-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/git-users?hl=en.




Re: [git-users] GIT on windows ...

2009-12-14 Thread Marcello Henrique
This is a option [0].

[0] http://code.google.com/p/msysgit/

On Mon, Dec 14, 2009 at 13:27, Michael P. Soulier
 wrote:
> On 13/12/09 Mark Rosenberg said:
>
>> There appear to be several options with respect to GIT clients, UIs,
>> etc for use on the Windows XP platform. As someone about to start
>> using GIT, I'd appreciate learning from this form which of the various
>> options are best (and worst).
>
> Personally the only one that worked for me was Cygwin.
>
> Mike
> --
> Michael P. Soulier 
> "Any intelligent fool can make things bigger and more complex... It
> takes a touch of genius - and a lot of courage to move in the opposite
> direction." --Albert Einstein
>



-- 
Marcello Henrique
Associação Software Livre de Goiás (www.aslgo.org.br)
Cercomp - UFG (www.cercomp.ufg.br)

--

You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To post to this group, send email to git-us...@googlegroups.com.
To unsubscribe from this group, send email to 
git-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/git-users?hl=en.




Re: [git-users] GIT on windows ...

2009-12-14 Thread Michael P. Soulier
On 13/12/09 Mark Rosenberg said:

> There appear to be several options with respect to GIT clients, UIs,
> etc for use on the Windows XP platform. As someone about to start
> using GIT, I'd appreciate learning from this form which of the various
> options are best (and worst).

Personally the only one that worked for me was Cygwin.

Mike
-- 
Michael P. Soulier 
"Any intelligent fool can make things bigger and more complex... It
takes a touch of genius - and a lot of courage to move in the opposite
direction." --Albert Einstein


pgpn5VIvTubyg.pgp
Description: PGP signature


Re: [git-users] GIT on windows ...

2009-12-14 Thread Artiom Diomin
http://github.com/nathanj/gitguide

guide how to use git on windows

В Вск, 13/12/2009 в 08:39 -0800, Mark Rosenberg пишет:
> There appear to be several options with respect to GIT clients, UIs,
> etc for use on the Windows XP platform. As someone about to start
> using GIT, I'd appreciate learning from this form which of the various
> options are best (and worst).
> 



signature.asc
Description: Эта часть  сообщения  подписана  цифровой  подписью


[git-users] GIT on windows ...

2009-12-14 Thread Mark Rosenberg
There appear to be several options with respect to GIT clients, UIs,
etc for use on the Windows XP platform. As someone about to start
using GIT, I'd appreciate learning from this form which of the various
options are best (and worst).

--

You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To post to this group, send email to git-us...@googlegroups.com.
To unsubscribe from this group, send email to 
git-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/git-users?hl=en.




[git-users] Re: git as database

2009-12-14 Thread Marek Wywiał


On 14 Gru, 13:33, Ido Ran  wrote:
> Hi,
> I've been thinking (and drawing) about using git as backend database
> for full revision database system.
> I've reach some conclusions and like to know what you think:
>   The reason git is so easy to use by SCM systems is because source
> control database always has a single point of entry which is the root
> directory. Everything rechable from that root is part of the version.
>   In general database system there are many roots. For example in CRM
> system the roots may be customers, services, employees, departments
> (and more). This fact make the Version object of git much more
> complicated then file system database.
>
> Let's start with this point and see how it goes from there.

something like that?
 * http://code.google.com/p/gimd/

--

You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To post to this group, send email to git-us...@googlegroups.com.
To unsubscribe from this group, send email to 
git-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/git-users?hl=en.




[git-users] git as database

2009-12-14 Thread Ido Ran
Hi,
I've been thinking (and drawing) about using git as backend database
for full revision database system.
I've reach some conclusions and like to know what you think:
  The reason git is so easy to use by SCM systems is because source
control database always has a single point of entry which is the root
directory. Everything rechable from that root is part of the version.
  In general database system there are many roots. For example in CRM
system the roots may be customers, services, employees, departments
(and more). This fact make the Version object of git much more
complicated then file system database.

Let's start with this point and see how it goes from there.

Thank you.
Ido.

--

You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To post to this group, send email to git-us...@googlegroups.com.
To unsubscribe from this group, send email to 
git-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/git-users?hl=en.