如何使用wget在unix上安装git?
我试过
wget http://github-media-downloads.s3.amazonaws.com/osx/git-credential-osxkeychain.
然后我把它移到了/ usr / bin但是git config命令失败了。
我也试过了
wget --no-check-certificate -q https://github.com/joyent/node/tarball/v0.7.1
wget:获取响应时出错:没有这样的文件或目录
我正在使用raspberrypi上的Yocto poky 2.1.3发行版图像并尝试安装git。我的箱子上没有贴包装。所以只剩下选项是wget。
答案 0 :(得分:3)
我建议在 Yocto 中开始使用可用的安装方式,有专用变量允许添加包以便安装到图像IMAGE_INSTALL中,只需添加此行进入 conf / local.conf 文件:
IMAGE_INSTALL_append = " git"
答案 1 :(得分:1)
我的猜测是你必须从资源下载,构建和安装
wget https://github.com/git/git/archive/v2.17.1.tar.gz
tar zxvf v2.17.1.tar.gz
cd git # or whatever directory the tar.gz file contains
./configure
make
make install
或类似的东西。