ssh $server_gd_bare -t "cd ~/public_html; git pull -q ~/root.git master"
我想将这两个变量添加到上面的命令行,但是..
working_repo = ~/public_html
root_repo = ~/root.git master
请注意,我正在加入我的远程服务器。
由于
答案 0 :(得分:0)
只需定义变量并在替换代码的各个部分时使用它们,如下所示:
server_gd_bare="some-server"
working_repo="~/public_html"
root_repo="~/root.git master"
ssh $server_gd_bare -t "cd $working_repo; git pull -q $root_repo"