-
How do I keep my west modules updates across rebases, bisecting and other git operations when doing upstream development and when using the upstream manifest. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 8 replies
-
add two git hooks:
and
Now every time you move in git history, modules will get updated and be in sync with main git repo. |
Beta Was this translation helpful? Give feedback.
-
Be careful with this advice. It only works if zephyr is your manifest repository. It does not work in other situations, such as if you're importing the zephyr manifest file somewhere else, or if your manifest file uses projects with revisions set to branches. |
Beta Was this translation helpful? Give feedback.
add two git hooks:
and
Now every time you move in git history, modules will get updated and be in sync with main git repo.