SoundMetrics / aris-integration-sdk

SDK for building custom controllers for the ARIS sonar.
MIT License
5 stars 2 forks source link

Update aris-file-sdk submodule to get latest. #41

Closed fvasquez closed 7 years ago

fvasquez commented 7 years ago

I had to do some weird stuff in posh-git to make this happen. I thought submodules would update automatically but they don't; not even with git submodule update. I had to issue a git pull from the submodules\aris-file-sdk subdirectory instead. See section on updating submodules from this blog post . Then I got this git diff on the submodule directory itself.

submodules\aris-file-sdk
-Subproject commit 3e0beb0f58f382c43ea00c329beb625062ef5dcc
+Subproject commit dfb91bc5ec35d65d721beefdfd8035ee4397c075

Looks like submodules are tied to a specific revision. This is the only change I committed to my branch for this PR.

curtnichols commented 7 years ago

Yeah, sorry about that--here's my favorited "Update Git submodule to latest commit on origin" from stackoverflow: http://stackoverflow.com/a/5828561/83202

Basically... submodule(checkout, pull), host-repo(stage, commit).