Files
deb-python-pygit2/docs/remotes.rst
Carlos Martín Nieto b80103b017 Introduce RemoteCollection
This lets us look up remotes by name, which is not possible by just
returning the list of remotes.

Move remote creation to Repostiory.remotes.create() and keep the old
Repository.create_remote() for compatibility, delegating to this new
way.

Existing code should keep working, but this moves us towards what we'd
need for a better interface in 0.22 which makes remote renaming and
deleting work with a name rather than an instance and would make sense
to exist as part of an Remote.remotes object.
2014-11-11 19:57:22 +01:00

1.3 KiB

Remotes

pygit2.Repository.remotes

pygit2.Repository.create_remote

The remote collection

pygit2.remote.RemoteCollection

The Remote type

pygit2.Remote

The TransferProgress type

This class contains the data which is available to us during a fetch.

pygit2.remote.TransferProgress

The Refspec type

pygit2.refspec.Refspec

Credentials

pygit2.Remote.credentials

There are two types of credentials: username/password and SSH key pairs. Both :pypygit2.UserPass and :pypygit2.Keypair are callable objects, with the appropriate signature for the credentials callback. They will ignore all the arguments and return themselves. This is useful for scripts where the credentials are known ahead of time. More complete interfaces would want to look up in their keychain or ask the user for the data to use in the credentials.

pygit2.UserPass

pygit2.Keypair