Answers for "install git repo to android studio"

1

How to install Android's repo on Ubuntu

$ curl https://storage.googleapis.com/git-repo-downloads/repo > /usr/bin/repo
$ chmod a+x /usr/bin/repo
$ mkdir working-directory-name 
$ cd working-directory-name 
$ repo init -u git://android.git.kernel.org/platform/manifest.git
Posted by: Guest on March-21-2022
1

install android repo

mkdir ~/bin
curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
chmod a+x ~/bin/repo
export PATH=~/bin:$PATH
Posted by: Guest on June-24-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language