Meego source code is managed through git tools, we can download through the GIT address of the source code, but http://meego.gitorious.org/
This website provides the GIT address of the module. If a module is downloaded from one module, it will not be exhausted ~ Therefore, install the repo tool and use the repo tool for all downloads.
1. Install git
sudo apt-get install git-core curl
2. Repo Installation
First, create a folder bin under the user's home directory and add the path to the Environment path. The specific method is as follows:
Edit ~ /. Bashrc, add a row at the end: Export path + = :~ /Bin/
Start the terminal, download the repo script through curl, and save it ~ In the/bin/repo file, the specific command is as follows:
curl http://android.git.kernel.org/repo >~/bin/repo
chmod a+x~/bin/repo
3. Download source code
Restart the terminal and create a directory. This document creates the meego folder under the user directory.
mkdir meego
cd meego
Initialize the code library:
repo init -u git://gitorious.org/repo-for-meego/meego_manifest.git
You will be prompted to enter the user and email address, and select the color. Press enter to select the default value.
After the preceding command is executed, synchronize the Code:
repo sync
Well, now we can say that all the work is done, and the rest is waiting ~
Sync takes a long time, and it is not a long time. Please wait,
After that, you will have the code above the main branch of meego !!!
Address: http://kb.cnblogs.com/page/74972/