Git clone 无法获取远程文件的问题
今天按照工具指南书上的命令行安装工具的渗透工具的时候出现了一个问题:
$ sudo git clone https://github.com/robertdavidgraham/masscan.git/opt/masscan
Cloning into 'masscan'...
remote: Not Found
fatal: repository 'https://github.com/robertdavidgraham/masscan.git/opt/masscan/' not found
最开始以为是输入错误,其中通过网上查阅了资料、博客,修改了SSH等设置以后依然无法成功的clone,这时候我想到用浏览器去看下实际情况。
Ctrl+HTTP…网址发现,出现了404错误。证明路径的是错的。
哦!
原来https://github.com/robertdavidgraham/masscan.git/opt/masscan
中/opt/masscan暗含的是安装的目录,而不能简单的直接键入,当将Git clone 地址修改为https://github.com/robertdavidgraham/masscan.git
时安装成功。
有时其实如果遇上有更新我们还是可以之间去网上看看,最新的链接更为方便。