👩💻 Join our community of thousands of amazing developers!
在使用Emacs的过程中肯定会涉及各种包的管理.最近把包管理换成了Borg。由于自己主要是在Windows下面使用,官方基于Makefile的一些脚本用起来就比较尴尬了.所以用Powershell写了一些辅助的脚本.主要是方便在初始化以后批量更新脚本和编译. borg.ps1 该脚本参考官方的borg.sh.用来更新和检查各个submodule. $hive_remote = git config -f .gitmodules borg.collective $toplevel = git rev-parse --show-toplevel $gitModules = (git submodule--helper list) -replace '[ |\t]', ',' | ConvertFrom-Csv -Header mode, sha1, stage, path foreach ($module in $gitModules) { if (Test-Path $module.path) { $name = git submodule--helper name $module.pa...