Reputation: 2375
I was using this project to test all types of delete operation and ended up in the current situation. Now when I try to merge from release to master, it always give me "Git apply failed with code 1: checking patch error does not exist in index" error when I try to stage the hunk.
What shall I do at this point?
Upvotes: 0
Views: 90
Reputation: 38734
Your branches master
and release
are not connected, so you cannot merge. But if the image is not misleading and the two commits on master
are effectively the same commits as the first two commits on your release
branch, then just reset your master
branch to your release
branch by doing git branch -f master release
.
Upvotes: 2