gpt4 book ai didi

git - 如何组合这些 git 命令?

转载 作者:太空狗 更新时间:2023-10-29 13:48:18 26 4
gpt4 key购买 nike

我为 git 执行了以下命令串,但我的手指已经厌倦了输入它们。 :)

git add .
git commit -m 'Some message'
git push
cap deploy

如何将这些(包括添加消息)组合成一个命令,例如“git booyah”或其他命令?

最佳答案

你可以定义一个 git alias调用脚本

Since version 1.5.0, Git supports aliases executing non-git commands, by prefixing the value with "!".
Starting with version 1.5.3, git supports appending the arguments to commands prefixed with "!", too.

在你的别名中定义一个函数,你可以避免显式调用'sh -c'

[alias]
publish = "!f() { git add . ; git commit -m \"$1\" ; git push ; cap deploy ; }; f"

或者,在 Pod 的建议之后在 his answer :

[alias]
publish = "!f() { git commit -a -m \"$1\" ; git push ; cap deploy ; }; f"

(待测)

关于git - 如何组合这些 git 命令?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1675464/

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