WesleyE
unread,Aug 11, 2011, 10:38:53 AM8/11/11Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to GitSharp
Hi All,
I'm just starting with Git&GitSharp, but I'm running in to an error
while cloning a local git repository. It gives an
"NotImplementedException" on
GitSharp.Core.Transport.TransportLocal.openFetch.
It seems weird that I can not clone an repository that is on an other
disk, or on a disk on my home server. This is the code that I am
using, am I doing something wrong?
string masterRepositoryFolder = "\\\\barbabenno\\Wesley
\\newRepo\\";
string localRepositoryFolder = "C:\\localRepo\\";
Git.Init(masterRepositoryFolder, true);
Repository localRepository =
Git.Clone(masterRepositoryFolder, localRepositoryFolder);
I did take a look at all the other transport streams, why are more
'difficult' transports like ssh, and AmazonS3 support and the simple
'local' stream not? Or am I looking in the wrong direction?
Also, creating an 'bare' git repository still creates the .git folder.
Is this common practice? The git command line tool seems to just
create the repository files in that directory.
Thanks,
Wesley