From bb44a39157c45a5a16e15205178f5cafe1cc54c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20Koutn=C3=BD?= Date: Sat, 3 Apr 2021 18:18:32 +0200 Subject: [PATCH] README: add information about full git history --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/README.md b/README.md index 886667c..fcad557 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 7bb11da6798323c708b3cb6a643b428f3f8644ee +``` + +Enjoy continuous history search +``` +git log --follow src/AbstractModel.php +```