Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

README: add information about full git history #5

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 7bb11da6798323c708b3cb6a643b428f3f8644ee
```

Enjoy continuous history search
```
git log --follow src/AbstractModel.php
```