I am new to repo and I am working on a project which involves fetching files from a manifest file using 'repo init' and the next step is 'repo sync'
One of the lines in manifest is
<project name="quic/qsdk/oss/boot/u-boot" path="qsdk/qca/src/u-boot"
revision="2b8f00e696dc8a6340f4627e0a6b955153b69741"
upstream="release/endive_preview_u2"/>
I understand 'repo init' will just initialize manifest files, etc and when 'repo sync' is executed it will clone the remote repository locally and fetch a revision or will it fetch the latest?
In the above manifest, since revision is mentioned the tree will be set to that revision. Is my understanding correct?
Thanks Zer0_0ne