當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Julia LibGit2.set_remote_url用法及代碼示例


用法:

set_remote_url(repo::GitRepo, remote_name, url)
set_remote_url(repo::String, remote_name, url)

GitRepo 或位於 path 的 git 存儲庫設置 fetch 和 push url for remote_name。通常 git repos 使用 "origin" 作為遠程名稱。

例子

repo_path = joinpath(tempdir(), "Example")
repo = LibGit2.init(repo_path)
LibGit2.set_remote_url(repo, "upstream", "https://github.com/JuliaLang/Example.jl")
LibGit2.set_remote_url(repo_path, "upstream2", "https://github.com/JuliaLang/Example2.jl")

相關用法


注:本文由純淨天空篩選整理自julialang.org 大神的英文原創作品 LibGit2.set_remote_url — Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。