From 32e3cf0d4e8da91a4dfa7edbf4e98dd46d286a29 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..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 +```