[Tutorial] How to download Android source in Ubuntu
[Tutorial] How to download Android source in Ubuntu
$ mkdir ~/bin
$ PATH=~/bin:$PATH$ sudo apt-get install curl
$ curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
$ chmod a+x ~/bin/repo$ mkdir WORKING_DIRECTORY
$ cd WORKING_DIRECTORYsudo apt-get install git-core$ repo init -u https://android.googlesource.com/platform/manifest$ repo init -u git://github.com/CyanogenMod/android.git -b cm-12.0git config --global user.email YourEmail
git config --global user.name YourName$ repo syncrepo sync -c -j4(11-02-2015, 04:34 PM)suheli how can i create a bin directory in my home directory