-
Notifications
You must be signed in to change notification settings - Fork 113
install_git_submodule
Brandon Werner edited this page Mar 15, 2018
·
3 revisions
If your project is managed in a git repository you can include ADAL as a git submodule. First check the GitHub Releases Page for the latest release tag. Replace <latest_release_tag>
with that version.
git submodule add https://github.com/AzureAD/azure-activedirectory-library-for-objc adal
cd adal
git checkout tags/<latest_release_tag>
cd ..
git add adal
git commit -m "Use ADAL git submodule at <latest_release_tag>"
git push