atomのgit-controlプラグインでエラーが出るようになってしまった

いつからか、atomのgit-controlプラグインで以下のようなエラーが出るようになった。

Uncaught TypeError: Cannot read property 'split' of undefined

バグ報告はされている。

https://github.com/jacogr/atom-git-control/issues/253

https://github.com/jacogr/atom-git-control/pull/247#issuecomment-338564321

にあるようにとりあえず

@setWorkspaceTitle(git.getRepository().path.split('/').reverse()[1])
↓
@setWorkspaceTitle(git.getRepository().repo.workingDirectory.split('/').reverse()[1])

のように変更すればいいようだ。