diff --git a/README.md b/README.md index 886667c..e7cdfe7 100644 --- a/README.md +++ b/README.md @@ -108,3 +108,20 @@ $myModel // any model that has define single method returned ModelEvent $modelEvent = ReferencedAccessor::accessModel($myModel,ModelEvent::class); ``` + +--- +## Complete Git history + +This repository was split from [fskdb repo](https://github.com/fykosak/fksdb/). +In order to have complete history of relevant files, you need to add a graft to +your local repo copy that links both histories together +``` +git remote add fksdb https://github.com/fykosak/fksdb.git +git fetch fksdb +git replace --graft 354f1903018856820eaa8a5d82f00fdbc2867b09 e1d8bc6e88c42851c50f9e47854d80a843cc3844~ +``` + +Enjoy continuous history search +``` +git log --follow src/AbstractModel.php +```