Changes between Version 42 and Version 43 of newport/bsp
- Timestamp:
- 12/15/2021 07:56:30 PM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
newport/bsp
v42 v43 113 113 [=#repo] 114 114 === Working with the repo tool 115 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. 116 117 See: 118 - https://source.android.com/setup/develop#repo 119 - https://gerrit.googlesource.com/git-repo/+/refs/heads/master/README.md 120 - https://source.android.com/setup/develop/repo 115 121 116 122 ==== Updating to the latest code … … 138 144 }}} 139 145 140 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: 141 {{{#!bash 142 git -C linux remote update 143 }}} 144 146 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: 147 {{{#!bash 148 repo forall -c git remote update # update all projects 149 git -C linux remote update # update just the project in the linux path 150 }}} 151 152 153 ==== Showing diffs for all projects (repo diff) 154 You can show all the diffs for each project using {{{repo diff}}} 145 155 146 156 ==== Using the latest version