当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Julia LibGit2.addblob!用法及代码示例


用法:

LibGit2.addblob!(repo::GitRepo, path::AbstractString)

读取path 处的文件并将其作为松散的blob 添加到repo 的对象数据库中。返回生成的 blob 的 GitHash

例子

hash_str = string(commit_oid)
blob_file = joinpath(repo_path, ".git", "objects", hash_str[1:2], hash_str[3:end])
id = LibGit2.addblob!(repo, blob_file)

相关用法


注:本文由纯净天空筛选整理自julialang.org 大神的英文原创作品 LibGit2.addblob! — Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。