次の「ワークフロー」を想定
create branch master
add + commit some files
create and checkout branch dev
edit and commit several times with silly commit messages
checkout master
merge dev branch into master branch
最後のステップで、devブランチのコミットからすべての(ばかげた)コミットメッセージを導入するのではなく、たとえば「merged dev branchtoday」のような単一のコミットメッセージを作成することは可能ですか?
matthias