Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 677 Bytes

meta.md

File metadata and controls

32 lines (22 loc) · 677 Bytes

git-submodules-adding-using-removing-and-updating
Git-Tools-Submodules

Add New Submodule

# Add New Submodule  
cd software-development-kit
pwd

git branch
git pull origin branch-name

git submodule add http://github.com/path/to-lib utilities/lib-name
git status
git submodule init
git submodule update

git add --all .
git commit -a -m 'lib-name added'

# Publish Release  

git add --all .
git commit -a -m 'clinical.meteor.rc21.json'
git branch
git push origin master

meteor publish-release ./clinical.meteor.rc21.json