This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # install.ps1 — 声明式快速环境部署脚本 | |
| # 用法: | |
| # 1. 本地初始化(无 Git 仓库链接): | |
| # .\install.ps1 | |
| # 2. 克隆/拉取指定 Git 仓库: | |
| # .\install.ps1 -RepoUrl "git@github.com:your-username/your-skills-repo.git" | |
| param( | |
| [Parameter(Mandatory=$false)] | |
| [string]$RepoUrl = "" |