我正在使用OSX Yosemite v10.10.5运行Mac。
我想使用AppleScript将我的本地git repo推送到我的遥控器。
所以git代码是:
贝壳git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/myusername/my-project.git
git push -u origin master
但是为了从终端运行,首先我需要cd
进入我的本地目录。
cd my-directory
那么我如何从AppleScript中完成所有这些操作呢?或者脚本编辑器中的JavaScript选项也会有所帮助。
答案 0 :(得分:2)
使用" git -C dir命令"表格明确告诉git在哪里工作。
答案 1 :(得分:1)
评论摘要(根据@PaulR):
myAppleScript.applescript将所有内容放入bash脚本中,然后从AppleScript运行该bash脚本。
do shell script "my_script.sh"