2

I am using below command to apply the patch using 'git am --continue ' command. It doesn't executed successfully. I tried to abort the process using below command.

git am --abort

But I am getting below error:

Resolve operation not in progress, we are not resuming.

Pls suggest how to resolve this.

Rajeshkumar
  • 739
  • 5
  • 16

1 Answers1

3

it shows 'nothing to commit working directory clean

Then check your history: git log, for a new commit created duringthe git am process.

  • If there is none, you can try again to apply your patch.
  • if there is, and its content is not to your liking, you can throw it away and retry your patch.
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250