Lines Matching refs:repo
69 Out of the box, "repo" and "git" will work just fine under Cygwin:
71 $ repo init -u git://android.git.kernel.org/platform/manifest.git
72 $ repo sync
85 $ repo init -u ssh://my.private.ssh.repo/platform/manifest.git
87 $ repo sync
94 There is one remaining issue with the default repo/git options:
96 If you plan on contributing, you will notice that even after a fresh "repo
105 To do this you just need to create a file .repo/local_manifest.xml that
128 Here's a script that takes care of all these details. It performs the repo
129 init, creates the appropriate local_manifest.xml, does a repo sync as
141 # repo init if there's no .repo directory
142 if [[ ! -d .repo ]]; then
143 repo init -u $URL -b $BRANCH
148 L=.repo/local_manifest.xml
161 repo sync $@