如何自动执行 git 命令



有没有办法编写脚本来自动运行 git 命令?例如,如果我在我的终端中,有没有办法运行类似于以下内容的命令:

run git push将自动为我运行命令:

git add .

git commit -m 'wip'

git push origin

等。

当然,你可以编写一个 shell 脚本来执行你想要的命令,或者你可以创建一个像 git config --global alias.p '!git add . && git commit -m "wip" && git push origin' 这样的 git 别名,以便以后能够运行git p

相关内容

  • 没有找到相关文章

最新更新