Inheritance: GitSharp.Core.Transport.BaseFetchConnection, IDisposable
Exemplo n.º 1
0
 public override IFetchConnection openFetch()
 {
     var c = new SftpObjectDatabase(Uri.Path, this);
     var r = new WalkFetchConnection(this, c);
     r.available(c.ReadAdvertisedRefs());
     return r;
 }
Exemplo n.º 2
0
        public override IFetchConnection openFetch()
        {
            var c = new SftpObjectDatabase(Uri.Path, this);
            var r = new WalkFetchConnection(this, c);

            r.available(c.ReadAdvertisedRefs());
            return(r);
        }
Exemplo n.º 3
0
 public override IFetchConnection openFetch()
 {
     var c = new HttpObjectDatabase(_objectsUrl);
     var r = new WalkFetchConnection(this, c);
     r.available(c.ReadAdvertisedRefs());
     return r;
 }