22

マニュアルページ git cherry-pick

...

-x
    When recording the commit, append a line that says "(cherry picked
    from commit …)" to the original commit message in order to indicate
    which commit this change was cherry-picked from. ...

-r
    It used to be that the command defaulted to do -x described above,
    and -r was to disable it. Now the default is not to do -x so this
    option is a no-op.

...

ローカルでデフォルトをに戻し、無効に-xできるようにする構成設定はありますか?-r見つかりませんでしたが、見逃した可能性があります。

4

2 に答える 2

16

のエイリアスを作成する以外にgit cherry-pick -x、いいえ、これは不可能です。

(おもしろい事実:デフォルトはcommit abd6970で変更されました。)

于 2012-06-25T20:10:12.417 に答える
2

次のコマンドを実行して、このエイリアスを〜/.gitconfigに追加します。

git config --global --replace-all alias.pick "cherry-pick -x"

次に、次のコマンドを実行するだけです。

git pick abc123

「選択」の選択を、自分にとって意味のある単語に置き換えることができます。

于 2021-12-09T17:33:32.420 に答える