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