我想从 Ubuntu 下载位于 code.google.com 的项目的 zip 文件。我正在使用 Ubuntu 12.04。
请帮帮我。我已经厌倦了这个问题,无法继续我的工作。
我想从 Ubuntu 下载位于 code.google.com 的项目的 zip 文件。我正在使用 Ubuntu 12.04。
请帮帮我。我已经厌倦了这个问题,无法继续我的工作。
确保你已经安装了 git。如果您还没有安装 git,请在控制台中这样尝试:
sudo apt-get install -y git
之后,您应该能够像这样下载源代码:
git clone https://path/to/repo
您要链接的那个特殊仓库使用 svn,因此您需要安装 svn:
sudo apt-get install -y svn
下载工作如下:
svn checkout http://android-mt-tutorials.googlecode.com/svn/trunk/ android-mt-tutorials-read-only
顺便说一句,这里也解释了:
https://code.google.com/p/android-mt-tutorials/source/checkout