# git-repo **Repository Path**: wai/git-repo ## Basic Information - **Project Name**: git-repo - **Description**: 从https://github.com/esrlabs/git-repo克隆来的 - **Primary Language**: Python - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2014-06-03 - **Last Updated**: 2020-12-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## Repo for Microsoft Windows and Linux ## Note: No support for Mac (untested). This is E.S.R.Labs Repo - just like Google Repo but this one also runs under Microsoft Windows. For more information, see [Version Control with Repo and Git](http://source.android.com/source/version-control.html). Repo is a repository management tool that Google built on top of Git. Repo unifies many Git repositories when necessary, does the uploads to a revision control system, and automates parts of the development workflow. Repo is not meant to replace Git, only to make it easier to work with Git in the context of multiple repositories. The repo command is an executable Python script that you can put anywhere in your path. In working with the source files, you will use Repo for across-network operations. For example, with a single Repo command you can download files from multiple repositories into your local working directory. ### Setup steps for Microsoft Windows ### ##### Fix priviledges to allow for creation of symbolic links ##### * If you are a member of the Administrators group you have to [turn off User Access Control (UAC)](http://windows.microsoft.com/en-us/windows7/turn-user-account-control-on-or-off) and then restart the computer. * Otherwise you have to adjust your user rights to [get SeCreateSymbolicLinkPrivilege priviledges](http://stackoverflow.com/questions/6722589/using-windows-mklink-for-linking-2-files). The editrights tools is provided as part of git-repo for Microsoft Windows. ##### Download and install Git ##### * Download [Git (http://git-scm.com/downloads)](http://git-scm.com/downloads) * Add Git to your path environment variable: e.g. C:\Program Files (x86)\Git\cmd; * Add MinGW to your path environment variable: e.g. C:\Program Files (x86)\Git\bin; ##### Download and install Python ##### * Download [Python 3+ (http://python.org/download/releases/3.3.0/)](http://python.org/download/releases/3.3.0/) * Add Python to your path environment variable: e.g. C:\Python33; ##### Download and install Repo either using the Windows Command Shell or Git Bash ##### ###### Windows Command Shell ###### md %USERPROFILE%\bin curl https://raw.githubusercontent.com/esrlabs/git-repo/master/repo > %USERPROFILE%/bin/repo curl https://raw.githubusercontent.com/esrlabs/git-repo/master/repo.cmd > %USERPROFILE%/bin/repo.cmd ###### Git Bash ###### mkdir ~/bin curl https://raw.githubusercontent.com/esrlabs/git-repo/master/repo > ~/bin/repo curl https://raw.githubusercontent.com/esrlabs/git-repo/master/repo.cmd > ~/bin/repo.cmd * Add Repo to your path environment variable: %USERPROFILE%\bin; * Create a HOME environment variable that points to %USERPROFILE% (necessary for OpenSSH to find its .ssh directory). * Create a GIT_EDITOR environment variable that has an editor executable as value. For this, first add the home directory of the editor executable to the path environment variable. GIT_EDITOR can than be set to "notepad++.exe", "gvim.exe", for example. ### Setup steps for Linux ### ##### Downloading and installing Git and Python ##### * sudo apt-get install git-core * Since our Repo requires Python 3.3, we recommend to change the first line of the ~/bin/repo executable to: #!/usr/bin/env python3.3 * Alternatively, use the following commands to switch between multiple Python versions: sudo update-alternatives --install /usr/bin/python python /usr/bin/python2 10 sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.3 20 sudo update-alternatives --config python ##### Download and install Repo ##### $ mkdir ~/bin $ PATH=~/bin:$PATH $ curl https://raw.githubusercontent.com/esrlabs/git-repo/master/repo > ~/bin/repo $ chmod a+x ~/bin/repo ### Usage ### For more detailed instructions regarding git-repo usage, please visit [git-repo](http://source.android.com/source/version-control.html).