本文整理匯總了Python中datalad.support.gitrepo.GitRepo.set_remote_url方法的典型用法代碼示例。如果您正苦於以下問題:Python GitRepo.set_remote_url方法的具體用法?Python GitRepo.set_remote_url怎麽用?Python GitRepo.set_remote_url使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類datalad.support.gitrepo.GitRepo
的用法示例。
在下文中一共展示了GitRepo.set_remote_url方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_GitRepo_set_remote_url
# 需要導入模塊: from datalad.support.gitrepo import GitRepo [as 別名]
# 或者: from datalad.support.gitrepo.GitRepo import set_remote_url [as 別名]
def test_GitRepo_set_remote_url(path):
gr = GitRepo(path, create=True)
gr.add_remote('some', 'http://example.com/.git')
eq_(gr.config['remote.some.url'],
'http://example.com/.git')
# change url:
gr.set_remote_url('some', 'http://believe.it')
eq_(gr.config['remote.some.url'],
'http://believe.it')
# set push url:
gr.set_remote_url('some', 'ssh://whatever.ru', push=True)
eq_(gr.config['remote.some.pushurl'],
'ssh://whatever.ru')
# add remote without url
url2 = 'http://repo2.example.com/.git'
gr.add_remote('some-without-url', url2)
eq_(gr.config['remote.some-without-url.url'], url2)
# "remove" it
gr.config.unset('remote.some-without-url.url', where='local')
with assert_raises(KeyError):
gr.config['remote.some-without-url.url']
eq_(set(gr.get_remotes()), {'some', 'some-without-url'})
eq_(set(gr.get_remotes(with_urls_only=True)), {'some'})