Reputation: 1945
After:
git am --signoff < /tmp/diff_api_public.patch
Output was:
Patch does not have a valid e-mail address.
And now, I have the repository in the state:
project-folder[branch-name|AM 1/1]$
What's next to regain the branch correct?
Upvotes: 2
Views: 3489
Reputation: 1328282
Looking at contrib/completion/git-prompt.sh
, this particular prompt is displayed where there is a .git/rebase-apply/applying
file.
That should means the path was applied with conflict.
Or, in this instance, that the patch wasn't applied fully (Patch does not have a valid e-mail address
)
The status is clear:
git am --skip
" to skip this patchgit am --abort
" to restore the original branchAs a workaround, in order to apply that patch, you an have a look at "git: Patch does not have a valid e-mail address".
git apply
Upvotes: 2