我正在尝试安装gdb的archer分支,这样我就可以支持一些对我有用的Fortran 90特性,而这些特性不在标准gdb中。当我按照他们的说明在网站上安装时,即运行:
git clone --origin archer git://sourceware.org/git/archer.git
我得到了相关的输出:
Cloning into 'archer'... remote: Counting objects: 800265, done. remote: Compressing objects: 100% (151929/151929), done. remote: Total 800265 (delta 645435), reused 795161 (delta 640396) Receiving objects: 100% (800265/800265), 255.46 MiB | 6.51 MiB/s, done. Resolving deltas: 100% (645435/645435), done. Checking connectivity... done. warning: remote HEAD refers to nonexistent ref, unable to checkout.
我在互联网上找遍了也没找到。有什么建议吗?
发布于 2015-03-26 17:39:34
您只完成了说明的第一步。您必须继续学习本教程。
,然后您可以使用..检出并跟踪后备箱。有关可用的分支,请参阅ArcherBranchManagement。
https://sourceware.org/gdb/wiki/ArcherBranchManagement
$ git clone --origin archer ssh://sourceware.org/git/archer.git
$ cd archer
$ git remote add gdb git://sourceware.org/git/gdb.git
$ git fetch gdb
$ git checkout gdb/masterhttps://stackoverflow.com/questions/29274578
复制相似问题