Example #1
0
	def create_remote(self, name, url, **kwargs):
		"""Create a new remote.
		
		For more information, please see the documentation of the Remote.create 
		methods 
		
		:return: Remote reference"""
		return Remote.create(self, name, url, **kwargs)
Example #2
0
	def delete_remote(self, remote):
		"""Delete the given remote."""
		return Remote.remove(self, remote)
Example #3
0
	def remotes(self):
		"""A list of Remote objects allowing to access and manipulate remotes
		:return: ``git.IterableList(Remote, ...)``"""
		return Remote.list_items(self)