Files
NetNewsWire/Technotes/SubmoduleCheatSheet.md
2018-06-23 15:39:49 -07:00

541 B
Raw Blame History

Git Submodules

Evergreen uses Git submodules to include shared frameworks. At this writing (June 2018) they are DB5, RSCore, RSWeb, RSTree, and RSParser.

To add a submodule:

git submodule add https://github.com/username/path

(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:

git submodule init
git submodule update

I think. Not sure about the above.