diff options
author | Alexandru Avadanii <Alexandru.Avadanii@enea.com> | 2016-10-12 16:39:38 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2016-10-12 16:39:38 +0000 |
commit | c89e6cfb6d5cded1f80196094f90a7b56a9081ee (patch) | |
tree | 74936aabfd93d97f9f62b2112e559dd6a0bd453c /build/f_repos/README.md | |
parent | 7b5abfd04c7a8c533894958073bb8d5c91b48eaf (diff) | |
parent | 0d222a4d86ddd5e9f99f3a35bcb123920d0cc5c3 (diff) |
Merge "ci, build/f_repos: Minor UX improvements"
Diffstat (limited to 'build/f_repos/README.md')
-rw-r--r-- | build/f_repos/README.md | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/build/f_repos/README.md b/build/f_repos/README.md index 6cc825e05..0a52fe040 100644 --- a/build/f_repos/README.md +++ b/build/f_repos/README.md @@ -92,3 +92,30 @@ Sub-project maintenance $ git submodule -b stable/mitaka add --name fuel-web \ https://github.com/openstack/fuel-web.git upstream/fuel-web + +2. Working with remote tracking for upgrading Fuel components + Enable remote tracking as described above, which at `make sub` will update + ALL submodules (fuel-main, fuel-library, ...) to remote branch (set in + .gitmodules) HEAD. + + * If upstream has NOT already tagged a new version, we can still work on + our patches, make sure they apply etc., then check for new upstream + changes (and that our patches still apply on top of them) by: + + $ make deepclean patches-import + + * If upstream has already tagged a new version we want to pick up, checkout + the new tag in each submodule: + + $ git submodule foreach 'git checkout <newtag>' + + * Once satisfied with the patch and submodule changes, commit them: + - enforce FUEL_TRACK_REMOTES to "yes" if you want to constatly use the + latest remote branch HEAD (as soon as upstream pushes a change on that + branch, our next build will automatically include it - risk of our + patches colliding with new upstream changes); + - stage patch changes if any; + - if submodule tags have been updated (relevant when remote tracking is + disabled, i.e. we have a stable upstream baseline), add submodules: + + $ make deepclean sub && git add -f sub/* |