Install
openclaw skills install windows-git-opsUse this skill when performing Git operations in a Windows PowerShell workspace, especially for branch creation, staging, commit, merge, status inspection, and command construction that must avoid bash-only syntax and reduce shell mistakes.
openclaw skills install windows-git-opsUse this skill when the task involves Git commands on Windows PowerShell. It prevents shell-specific mistakes, keeps Git operations auditable, and favors simple non-interactive command sequences over clever chained commands.
&&, ||, <<EOF, or other POSIX-only forms.git status --short, git branch --show-current, git diff --name-only, or git diff --cached --name-only.git commit.codex/ prefix.$env:PYTHONPATH='.'.Use this sequence before any branch, staging, commit, or merge action:
git branch --show-currentgit status --shortgit diff --name-onlygit diff --cached --name-onlygit checkout -b codex/<name>.git branch --show-current if the branch matters to the task.git add <path>.git diff --cached --name-only and, when needed, git diff --cached.git commit -m "fix: ..." .git checkout maingit merge --no-ff <branch> -m "<message>" unless the user asked for a different strategy.cmd1 && cmd2, split it into separate commands.