Palash Nigam
Palash Nigam

Reputation: 2022

Git rebase error VCS_INFO_get_data_git:225: no such file or directory: .git/rebase-apply/msg-clean

Rebasing the dev branch of a project gives the following errors

VCS_INFO_get_data_git:225: no such file or directory: .git/rebase-apply/msg-clean

So I was trying to update my local repos dev branch with the remote dev branch of this project https://github.com/appbaseio/abc/ using git fetch origin master && git rebase origin/master but I got the following error VCS_INFO_get_data_git:225: no such file or directory: .git/rebase-apply/msg-clean and now my zsh doesn't show the branch as dev but it appears to be in some detached head state showing a commit sha like this

palash25@Lenovo-G50  ~/Dev/Projects/golang/gopath/src/github.com/appbaseio/abc  ➦ 6509b83 ●✚ >R>

Upvotes: 3

Views: 1171

Answers (1)

VonC
VonC

Reputation: 1328292

That seems a reported bug: oh-my-zsh/issue 4932

This is a bug in zsh's codebase, fixed in zsh-users/zsh@7a16787.

If you can, update your zsh to 5.2.

Upvotes: 1

Related Questions