Reputation: 51
When I run a git commit or git status I am getting a response of killed.
git commit -am 'added images'
Killed
After a .git/index.lock file is generated, I can delete the lock file and try again but I keep getting the response Killed.
Upvotes: 3
Views: 1116
Reputation: 51
This was caused by doing a commit while I was using Vagrant in SSH but having the repo initially set up on my Mac. Basically I missed the fact that I had the exact same .git directory on two systems because of Vagrant.
Upvotes: 1