Is there any functional difference between git commit and git merge --continue after resolving all index/working-tree conflicts in a merge?
The manual somewhat obscurely says:
Resolve the conflicts. Git will mark the conflicts in the working tree. Edit the files into shape and git add them to the index. Use
git commitorgit merge --continueto seal the deal. The latter command checks whether there is a (interrupted) merge in progress before calling git commit.
I don't' understand what the last sentence means. Is there any real difference between git commit and git merge --continue after resolving all conflicts in the working tree and index?