批量通过命令设置变量

时间:2018-06-08 15:13:27

标签: windows batch-file variables cmd

我需要设置一个作为命令传递的变量。

例如,命令将是这样的:

github "Init command"

我必须做的命令是这样的:

git add. && git commit -m "/TItle" && git push origin master

其中"Init command""/Title"

1 个答案:

答案 0 :(得分:1)

最简单的方法,恕我直言,将创建一个函数:

github() {
    # $1 is the (1st) parameter passed to the function
    git add . && git commit -m "$1" && git push origin master
}