Como rever um commit específico no Git

Enviei um commit (chamado "A commit") para revisar (Gerrit) usandogit review comando.

Agora, eu faço um novo commit (chamado "B commit") e também quero enviá-lo para revisão, mas não quero reenviar o "A commit". Não há dependências um do outro.

Como enviar um comentário para gerrit para um commit específico ?.

ATUALIZAR:

$ git add --all


$ git status

# On branch delete_role
# Changes to be committed:
#   (use "git reset HEAD <file>..." to unstage)
#
#       modified:   path/to/file.ext


$ git status

# On branch delete_role
nothing to commit (working directory clean)


$ git branch

*delete_role
 master


$ git log --graph --decorate --oneline -n13

* 531bd84 (HEAD, delete_role) commit 3
* df68f1a (master) commit 2
* 4ce2d8d commit 1
*   6751c7d (origin/master, origin/HEAD, gerrit/master)

Commit "df68f1a"e"4ce2d8d"são dependentes e foram enviados em umgit review comando, mas cometer "531bd84"pertence a um novo ramo (delete_role) porque é um novo problema.

$ git review

You have more than one commit that you are about to submit.
The outstanding commits are:

531bd84 (HEAD, delete_role) commit 3
df68f1a (master) commit 2
4ce2d8d commit 1

eu queroenviar para Gerrit apenas o "531bd84"cometer, não os outros.

questionAnswers(4)

yourAnswerToTheQuestion