Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 329 Bytes

adding_as_module.md

File metadata and controls

20 lines (14 loc) · 329 Bytes

#Adding this repository as a submodule of another

Within the parent repo add the submodule:

git submodule add https://github.com/artic-network/<repo_name>.git

Commit the change and push:

git commit -m "adding submodule"
git push origin master

To update all submodules:

git submodule update --remote