0
AsciidoctorでQ & Aを作成します。答えのほとんどは、[ソース]セクションで必要なコマンドラインの指示を含んでいます。 しかし、[source]ブロックは[qanda]ブロックの最後を示しているようです。qanda内のソースブロックの回答
[qanda]
How do you show all the changes introduced in branchA since its common ancestor commit with branchB?::
Having branchA and branchB as valid pointers, run
[source,sh]
----
$ git log branchB..branchA
----
You probably mean branchA and branchB to be recently related.
How do you see the contents of a stash?::
`git stash show -p "stash{0}"`
2番目の質問は、ラベル付きリストの最初の要素として表示されます。
Asciidoctorでこれを表現する方法はありますか?