如何从AppleScript进入我的本地git仓库?

时间:2016-04-16 08:04:53

标签: git macos shell github applescript

我正在使用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选项也会有所帮助。

2 个答案:

答案 0 :(得分:2)

使用" git -C dir命令"表格明确告诉git在哪里工作。

答案 1 :(得分:1)

评论摘要(根据@PaulR):

  

将所有内容放入bash脚本中,然后从AppleScript运行该bash脚本。

myAppleScript.applescript
do shell script "my_script.sh"