Sidenote: How didn't you notice that you made a mistake: with "git commit --amend" you have existing commit message in editor, instead of just a template as in the case of "git commit"... unless you used '-m' option to "git commit", which while sometimes useful is not something that I would recommend to use in real repositories.
The simplest solution would be to use the power of reflog. Running git reflog should give you something like the following:
$ git reflog
e96454d HEAD@{0}: commit (amend): Baz
ede30a6 HEAD@{1}: commit: Bar
21495d1 HEAD@{2}: commit: Foo
First, let's rewind to the state before mistaken amending:
$ git reset --hard HEAD@{1}
HEAD is now at ede30a6 Bar
This of course updates reflog:
$ git reflog
ede30a6 HEAD@{0}: HEAD@{1}: updating HEAD
e96454d HEAD@{1}: commit (amend): Baz
ede30a6 HEAD@{2}: commit: Bar
21495d1 HEAD@{3}: commit: Foo
Now you need to checkout state that you had at amend:
$ git checkout HEAD@{1} -- . # or 'e96454d' instead of 'HEAD@{1}' in this example
And then do a commit:
$ git commit -a
[master d6272c1] Baz
1 files changed, 1 insertions(+), 0 deletions(-)
HTH.
A better solution can be found in Charles Bailey answer for 'How to undo “git commit --amend” done instead of “git commit”' this question is duplicate of.