Add note about updating Git submodules to their latest commits.

This commit is contained in:
Brent Simmons 2018-07-14 12:32:11 -07:00
parent 12de2ea155
commit 753ccf14dd

View File

@ -1,6 +1,6 @@
# Git Submodules
Evergreen uses [Git submodules](https://git-scm.com/book/en/v2/Git-Tools-Submodules) to include shared frameworks. At this writing (June 2018) they are DB5, RSCore, RSWeb, RSTree, and RSParser.
Evergreen uses [Git submodules](https://git-scm.com/book/en/v2/Git-Tools-Submodules) to include shared frameworks. At this writing (June 2018) they are DB5, RSCore, RSDatabase, RSWeb, RSTree, and RSParser.
To add a submodule:
@ -8,9 +8,7 @@ To add a submodule:
(Its unlikely youll need to do that. Adding a submodule is done super-rarely, if ever, and its Brents call.)
To update a submodule — to get the latest changes:
To update all submodules to their latest commits:
git submodule init
git submodule update
git submodule foreach git pull origin master
I think. Not sure about the above.