使用 git pull 时指定自定义合并消息
Specify custom merge message when using git pull
有没有一种方法可以不使用 --edit 来指定自定义合并消息?
这会调出编辑器:
git pull <some location> --edit
我愿意:
git pull <some location> --merge-message "Merge from X"
https://git-scm.com/docs/git-pull#_description:
git pull
对于 git fetch
是 shorthand,然后是 git merge
。
https://git-scm.com/docs/git-merge#Documentation/git-merge.txt--mltmsggt
git merge
(因此 git pull
)接受 -m message
传递消息,-F file
从文件中获取消息。
有没有一种方法可以不使用 --edit 来指定自定义合并消息?
这会调出编辑器:
git pull <some location> --edit
我愿意:
git pull <some location> --merge-message "Merge from X"
https://git-scm.com/docs/git-pull#_description:
git pull
对于 git fetch
是 shorthand,然后是 git merge
。
https://git-scm.com/docs/git-merge#Documentation/git-merge.txt--mltmsggt
git merge
(因此 git pull
)接受 -m message
传递消息,-F file
从文件中获取消息。