Open mwachs5 opened 4 years ago
This is just one item: https://github.com/sifive/wit/issues/199
Other items:
make it easy to push from a wit manifest.json back to equivalent of doing this fun painful recursive process:
cd git submodule update --init cd git checkout cd .. git checkout -b bump_submodules git add git commit -m "bump submodule to match wit-manifest.json" git push origin bump_submodules cd .. wit -C update-dep subrepo_with_submodules cd top_module git checkout -b bump_submodules git add -u wit-manifest.json git commit -m "Bump wit-manifest.json to pick up some_submodule change" git push origin bump_submodules cd some_submodule git submodule -deinit wit update-pkg top_module wit update
This is just one item: https://github.com/sifive/wit/issues/199
Other items:
make it easy to push from a wit manifest.json back to equivalent of doing this fun painful recursive process:
cd
git submodule update --init
cd
git checkout
cd ..
git checkout -b bump_submodules
git add
git commit -m "bump submodule to match wit-manifest.json"
git push origin bump_submodules
cd ..
wit -C update-dep subrepo_with_submodules
cd top_module
git checkout -b bump_submodules
git add -u wit-manifest.json
git commit -m "Bump wit-manifest.json to pick up some_submodule change"
git push origin bump_submodules
cd some_submodule
git submodule -deinit
wit update-pkg top_module
wit update