gpt4 book ai didi

git - 从命令行添加换行符到 'git commit -m'

转载 作者:IT王子 更新时间:2023-10-29 01:09:00 28 4
gpt4 key购买 nike

我在命令行中使用 Git,并试图在不进入 Vim 的情况下向提交消息添加换行符(使用 git commit -m "")。

这可能吗?

最佳答案

当然,如何完成取决于您的 shell。在 Bash 中,您可以在消息周围使用单引号,并且可以将引号保持打开状态,这将使 Bash 提示换行,直到您关闭引号。像这样:

git commit -m 'Message

goes
here'

或者,您可以使用“此处文档”(也称为 heredoc):

git commit -F- <<EOF
Message

goes
here
EOF

关于git - 从命令行添加换行符到 'git commit -m',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5064563/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com