Skip to content

Commit

Permalink
README: add information about full git history
Browse files Browse the repository at this point in the history
  • Loading branch information
Werkov committed Apr 3, 2021
1 parent f2aba75 commit 32e3cf0
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

0 comments on commit 32e3cf0

Please sign in to comment.