如何修复货物错误 "failed to find branch `master`"?
how to fix cargo error "failed to find branch `master`"?
生锈 1.52,我 运行:
cargo install --git https://gitlab.com/seaofvoices/darklua.git
导致此错误输出:
error: failed to find branch `master`
Caused by:
cannot locate remote-tracking branch 'origin/master'; class=Reference (4); code=NotFound (-3)
这个 repo 从来没有一个名为 master
的分支,而且我没有看到指定一个不同名称的 HEAD 分支的方法。
这是 1.55 版之前 Rust 中缺少的功能。修复已合并到此拉取请求中的货物中:
https://github.com/rust-lang/cargo/pull/8522
并使其进入 Rust 1.55 版本。当运行以上命令使用rust 1.55时,命令执行成功。
生锈 1.52,我 运行:
cargo install --git https://gitlab.com/seaofvoices/darklua.git
导致此错误输出:
error: failed to find branch `master`
Caused by:
cannot locate remote-tracking branch 'origin/master'; class=Reference (4); code=NotFound (-3)
这个 repo 从来没有一个名为 master
的分支,而且我没有看到指定一个不同名称的 HEAD 分支的方法。
这是 1.55 版之前 Rust 中缺少的功能。修复已合并到此拉取请求中的货物中: https://github.com/rust-lang/cargo/pull/8522
并使其进入 Rust 1.55 版本。当运行以上命令使用rust 1.55时,命令执行成功。