Skip to content

Git subtrees

زعبي edited this page Sep 28, 2018 · 2 revisions

This repo uses the main Adhan repo to access the shared JSON files for test data. The main repo has been added as a subtree via the following commands:

git remote add -f AdhanShared [email protected]:batoulapps/adhan-testdata.git
git subtree add --prefix Shared AdhanShared master --squash

The subtree can be updated with the following commands:

git fetch AdhanShared master
git subtree pull --prefix Shared AdhanShared master --squash
Clone this wiki locally