下記のコマンドで3つ出てくる。

$ git rev-list --parents -n 1 @
8be... 4a4... 3bc...

3つ目が親コミットのハッシュ値。

$ git rev-list --parents -n 1 @ | awk '{print $3}'

参考