documentation - Where the manifest format of the Android repo tool is explained? -
i use repo
command line new project based on many git repositories. not find specification/manual/documentation manifest format.
for example simplified default.xml
<manifest> <remote name="aosp" fetch="https://android.googlesource.com" review="android-review.googlesource.com"/> <remote name="github" fetch=".." review="review.cyanogenmod.org"/> <remote name="private" fetch="ssh://git@github.com"/> <default revision="refs/tags/1.3-1" remote="github" sync-c="true" sync-j="4"/> <project path="build" name="cyanogenmod/android_build"> <copyfile src="core/root.mk" dest="makefile"/> </project> <project path="android" name="cyanogenmod/android"/> <project path="abi/cpp" name="cyanogenmod/android_abi_cpp"/> </manifest>
i found documentations, post them here useful others ;)
- enter command
repo manifest
(from edward falk's comment) - edit file
.repo/repo/docs/manifest-format.txt
(from bjarke freund-hansen's answer) - go https://gerrit.googlesource.com/git-repo/+/master/docs/manifest-format.txt (from david fraser's comment)
Comments
Post a Comment