我需要设置一个作为命令传递的变量。
例如,命令将是这样的:github "Init command"
我必须做的命令是这样的:
git add. && git commit -m "/TItle" && git push origin master
其中"Init command"
为"/Title"
答案 0 :(得分:1)
最简单的方法,恕我直言,将创建一个函数:
github() {
# $1 is the (1st) parameter passed to the function
git add . && git commit -m "$1" && git push origin master
}