ppm: Update ppm to commit a6f843f0381f64cb5865efc7 #1252
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Includes the ppm Pull Request:
Once again, a refresher on how to easily update a submodule:
In the root of
pulsar
repo:git submodule update --remote ppm
git add ppm
git commit
One can alternatively
cd
into theppm
dir, do things likegit remote update
andgit checkout [commit from ppm repo]
, thencd
back out topulsar
main dir and thengit add ppm
andgit commit
and it will record the arbitrary commit you checked out as the new submodule state. You could even author new commits that live only in theppm
submodule ofpulsar
repo, and not at the remoteppm
repo itself! Yes, submodules can track original patches your upstream does not carry!!! Very flexible. A bit weird and arguably over-engineered. But it will let you do a lot, quite flexibly, if you know the rules or guess correctly with enough luck! (Just like the rest ofgit
???)