Inheritance: GitSharp.Core.Transport.BaseFetchConnection, IDisposable
Example #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;
 }
Example #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);
        }
Example #3
0
 public override IFetchConnection openFetch()
 {
     var c = new HttpObjectDatabase(_objectsUrl);
     var r = new WalkFetchConnection(this, c);
     r.available(c.ReadAdvertisedRefs());
     return r;
 }