git.ssh-env | SSH 関連の環境変数を上書きした Git のネットワーク操作をブロックします。 | GIT_SSH_COMMAND="./ssh-wrapper" git push | すべてのレベル |
git.alias-config | 安全に解決できないコマンドラインの Git エイリアスをブロックします。 | git -c alias.wipe='!rm -rf /' wipe | すべてのレベル |
git.checkout-force | ローカルの変更を破棄する強制 checkout をブロックします。 | git checkout --force main | すべてのレベル |
git.checkout-double-dash | -- の後にパスを復元する checkout をブロックします。 | git checkout -- src/app.ts | すべてのレベル |
git.checkout-ref-path | ref とパスの復元を組み合わせた checkout をブロックします。 | git checkout HEAD -- src/app.ts | すべてのレベル |
git.checkout-pathspec-from-file | ファイルから pathspec を読み込む checkout をブロックします。 | git checkout --pathspec-from-file=paths.txt | すべてのレベル |
git.checkout-ambiguous | パスを復元する可能性のある曖昧な checkout 引数をブロックします。 | git checkout main src/app.ts | すべてのレベル |
git.switch-discard-changes | ローカルの変更を明示的に破棄するブランチ切り替えをブロックします。 | git switch --discard-changes main | すべてのレベル |
git.switch-force | 強制的なブランチ切り替えをブロックします。 | git switch --force main | すべてのレベル |
git.restore-worktree | 作業ツリーへの restore をブロックします。 | git restore --worktree src/app.ts | すべてのレベル |
git.restore-unstaged | ステージされていない変更の restore をブロックします。 | git restore src/app.ts | すべてのレベル |
git.reset-hard | hard reset をブロックします。 | git reset --hard | すべてのレベル |
git.reset-merge | merge reset をブロックします。 | git reset --merge | すべてのレベル |
git.clean-force | 強制的な clean をブロックします。 | git clean -fd | すべてのレベル |
git.rm-force | 追跡中のファイルを作業ツリーから強制削除する操作をブロックします。 | git rm -rf . | すべてのレベル |
git.push-force | force push をブロックします。 | git push --force origin main | すべてのレベル |
git.push-delete | push によるリモート ref の削除をブロックします。 | git push --delete origin old-branch | すべてのレベル |
git.push-mirror | リモート ref を強制更新または削除しうる mirror push をブロックします。 | git push --mirror origin | すべてのレベル |
git.branch-force-delete | ブランチの強制削除をブロックします。 | git branch -D old-branch | すべてのレベル |
git.rebase-abort | rebase の中止をブロックします。 | git rebase --abort | すべてのレベル |
git.merge-abort | merge の中止をブロックします。 | git merge --abort | すべてのレベル |
git.tag-delete | タグの削除をブロックします。 | git tag --delete v1.0.0 | すべてのレベル |
git.reflog-delete | reflog の削除をブロックします。 | git reflog delete HEAD@{1} | すべてのレベル |
git.stash-drop | stash エントリの削除をブロックします。 | git stash drop stash@{0} | すべてのレベル |
git.stash-clear | すべての stash エントリの消去をブロックします。 | git stash clear | すべてのレベル |
git.worktree-remove-force | worktree の強制削除をブロックします。 | git worktree remove --force ../feature | すべてのレベル |