Changes between Version 14 and Version 15 of venice/bsp
- Timestamp:
- 12/15/2021 07:56:36 PM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
venice/bsp
v14 v15 94 94 [=#repo] 95 95 === Working with the repo tool 96 97 ==== Updating to the latest code 96 The {{{repo}}} tool unifies Git repositories into a single project by specifying Git repos and directories they exist in. The tool was created for the Android project as Android is comprised of hundreds of repos however it has since been used by many projects that benefit from its git repo management tool. 97 98 See: 99 - https://source.android.com/setup/develop#repo 100 - https://gerrit.googlesource.com/git-repo/+/refs/heads/master/README.md 101 - https://source.android.com/setup/develop/repo 102 103 ==== Updating to the latest code (repo sync) 98 104 When working with the {{{repo}}} tool you can update to the latest code using the {{{repo sync}}} command: 99 105 {{{#!bash … … 119 125 }}} 120 126 121 This specific error is saying that the 'v5.10.76-venice' revision (or branch) is not in the current working copy of the repo. To resolve this you need to do a {{{git remote update}}} for that project: 122 {{{#!bash 123 git -C linux remote update 127 This specific error is saying that the 'v5.10.76-venice' revision (or branch) is not in the current working copy of the repo. To resolve this you need to do a {{{git remote update}}} for that project. You can also use {{{repo foreach}}} to update all projects: 128 {{{#!bash 129 repo forall -c git remote update # update all projects 130 git -C linux remote update # update just the project in the linux path 124 131 }}} 125 132 133 134 ==== Showing diffs for all projects (repo diff) 135 You can show all the diffs for each project using {{{repo diff}}} 126 136 127 137 ==== Using the latest version