我已经使用安装了 Git
sudo apt-get install git-core
之后,当我尝试跑步时,git
我得到了
-bash:git:找不到命令。
我正在使用 Ubuntu 10.04 LTS。
我已经使用安装了 Git
sudo apt-get install git-core
之后,当我尝试跑步时,git
我得到了
-bash:git:找不到命令。
我正在使用 Ubuntu 10.04 LTS。
刚刚在其他来源找到:
sudo apt-get install python-software-properties
sudo add-apt-repository ppa:git-core/ppa
sudo apt-get update
sudo apt-get install git
这将安装最新的稳定 git 版本。Ubuntu 的存储库拥有最古老的存储库。
我收到了错误
sudo apt-get install git-core: command not found
添加存储库后
sudo add-apt-repository ppa:pdoes/ppa
然后运行这个命令,它仍然给我同样的结果。
sudo apt-get install git-core
但是这个命令为我做了所有的事情
sudo apt-get install git-all
我不会从 Ubuntu 本身安装软件包,git 版本将是 1.7.0.4
我建议使用我的 PPA,因为您将获得最新版本,因为我写这篇文章时它会是 1.7.11.1
将我的 Ubuntu git 存储库添加到您的系统
sudo add-apt-repository ppa:pdoes/ppa
然后你可以做sudo apt-get install git-core
有关更多信息,请参见我的网站:Ubuntu 的 Git 包
sudo apt-get update
sudo apt-get install git
参考上面的#3。命令不起作用。