gpt4 book ai didi

git - 您如何将 AppleScript 脚本置于版本控制之下?

转载 作者:IT王子 更新时间:2023-10-29 01:07:12 25 4
gpt4 key购买 nike

我想知道这是否是最好的解决方案:

  • .applescript版本控制下的文件
  • 创建安装脚本以使用osacompile编译文件

但是还有.scptd目录。或者我可以将 .applescript.scpt 文件都置于版本控制之下?

什么是最好的解决方案?

最佳答案

我爱@DanielTrebbien's solution ,但它有点太复杂了,我不希望人们为了我的 github 项目而实现它。一个更简单的选项可以让您看到 diff 中的文本更改,即使用 osadecompile 将 diff 进程告知 textconv。

添加到.gitattributes

*.scpt diff=scpt

添加到.git/config

[diff "scpt"]
textconv = osadecompile
binary=true

这是来 self 的 AppleScript-droplet github project 的示例差异

$ git diff
--- a/AppleScript-droplet.app/Contents/Resources/Scripts/main.scpt
+++ b/AppleScript-droplet.app/Contents/Resources/Scripts/main.scpt
@@ -1,3 +1,3 @@
-on open filelist
- ## Set useTerminal to true to run the script in a terminal
- set useTerminal to true
+on open file_list
+ ## Set use_terminal to true to run the script in a terminal
+ set use_terminal to true

非常感谢@DanielTrebbien 的回答让我找到了 osadecompile。

关于git - 您如何将 AppleScript 脚本置于版本控制之下?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7641806/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com