How to install git-fork-clone
npx skills add https://github.com/zc277584121/mygitplugin --skill git-fork-cloneClaude Code
Cursor
Windsurf
Cline
Full instructions (SKILL.md)
Source of truth, from zc277584121/mygitplugin.
name: git-fork-clone description: Fork a GitHub repo and clone it locally with proper remote setup allowed-tools:
- Bash
Git Fork & Clone
Fork 别人的 GitHub 仓库并 clone 到本地,自动配置 official remote。
触发条件
当用户要求 fork 别人的仓库并 clone 到本地时使用此 skill。
输入
用户需要提供目标仓库,格式为 owner/repo。
执行步骤
- Fork 仓库:使用
gh repo fork <owner/repo> --clone=false将仓库 fork 到zc277584121账号下。 - Clone 仓库:使用
gh repo clone zc277584121/<repo>将 fork 后的仓库 clone 到本地。 - 进入项目目录:
cd <repo>。 - 添加 official remote:
git remote add official https://github.com/<original-owner>/<repo>.git,用于跟踪上游仓库。 - 验证 remote 配置:
git remote -v,确认 origin 指向自己的 fork,official 指向原始仓库。
注意事项
- 如果 fork 已存在,
gh repo fork会自动跳过 fork 步骤。 - 始终使用
official作为上游 remote 名称(而非upstream),以保持一致性。 - Clone 完成后向用户报告 remote 配置结果。
Related skills
More from zc277584121/mygitplugin and the wider catalog.
GI
git-create-repo
zc277584121/mygitplugin
Create a new GitHub repository and clone it locally
1.3k installsAudited
GI
git-commit-push
zc277584121/mygitplugin
Commit changes and push to origin without creating a PR
1.3k installs
GI
git-commit-pr
zc277584121/mygitplugin
Commit changes and create a pull request to the official upstream repo
1.3k installs
GI
git-summarize-weekly
zc277584121/mygitplugin
Summarize weekly GitHub contributions for writing weekly reports
1.3k installs
GI
git-get-notification
zc277584121/mygitplugin
Check GitHub notifications and recent Issues/PRs for monitored repos
1.3k installs
GI
git-sync-main
zc277584121/mygitplugin
Sync local main branch with the latest code from official upstream or origin remote
1.3k installsAudited