Run any Skill in Manus
with one click
with one click
Run any Skill in Manus with one click
Get Started$pwd:
$ git log --oneline --stat
stars:0
forks:0
updated:May 6, 2026 at 09:44
SKILL.md
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | push |
| description | 推送当前分支到远程仓库 |
| disable-model-invocation | true |
| argument-hint | [远程名称(默认origin)] |
| allowed-tools | Bash(git *) |
将当前分支推送到远程仓库。
git status 确认没有未提交的更改git branch --show-current 获取当前分支名git log --oneline @{u}..HEAD 2>/dev/null || git log --oneline -5 查看待推送的提交git push -u ${ARGUMENTS:-origin} $(git branch --show-current)--force 推送,除非用户明确要求