Skip to content

Git subtrees

زعبي edited this page Sep 12, 2018 · 1 revision

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 git@github.com:batoulapps/Adhan.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