在我的 bash 脚本中,我有:
echo -e '#!/bin/sh /n GIT_WORK_TREE=/home/realopti/domains/$name git checkout -f' >> ~/domains/$name.git/hooks/post-receive
这会产生:
#!/bin/sh /n GIT_WORK_TREE=/home/realopti/domains/john git checkout -f
在我的接收后文件中。
我希望文件看起来像:
#!/bin/sh
GIT_WORK_TREE=/home/realopti/domains/john git checkout -f
我怎样才能做到这一点。
谢谢,
账单