en un clic
git
Git version control operations for repositories.
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Menu
Git version control operations for repositories.
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Basé sur la classification professionnelle SOC
File-based planning system.
Coding assistant capabilities including file investigation, reading, searching, editing, and command execution.
Agent delegation and orchestration capabilities to split tasks and run them in parallel.
Office document reading capabilities using the markitdown library.
Operating System file manipulation capabilities (list, bulk create, bulk move, regex move).
System administration tools for local OS info and remote SSH connection management.
| name | git |
| description | Git version control operations for repositories. |
| allowed-tools | ["git_status","git_diff","git_add","git_commit","git_log","git_branch","git_checkout","git_pull","git_push","git_init","git_clone","git_remote"] |
This skill provides the agent with capabilities to interact with Git repositories for version control.
Show the working tree status.
repo_path: Path to the Git repository (defaults to current directory).Show changes between commits, commit and working tree, etc.
repo_path: Path to the Git repository (defaults to current directory).args: Additional diff arguments (optional).Add file contents to the index.
repo_path: Path to the Git repository (defaults to current directory).pathspec: Files to add (defaults to '.' for all).Record changes to the repository.
repo_path: Path to the Git repository (defaults to current directory).message: Commit message.Show commit logs.
repo_path: Path to the Git repository (defaults to current directory).args: Additional log arguments (optional).List, create, or delete branches.
repo_path: Path to the Git repository (defaults to current directory).action: Branch action: 'list', 'create', 'delete', 'rename'.branch_name: Branch name for create/delete/rename.new_name: New branch name for rename.Switch branches or restore working tree files.
repo_path: Path to the Git repository (defaults to current directory).target: Branch, commit, or file to checkout.Fetch from and integrate with another repository or local branch.
repo_path: Path to the Git repository (defaults to current directory).remote: Remote name (defaults to 'origin').branch: Branch name (defaults to current branch).Update remote refs along with associated objects.
repo_path: Path to the Git repository (defaults to current directory).remote: Remote name (defaults to 'origin').branch: Branch name (defaults to current branch).Create an empty Git repository or reinitialize an existing one.
repo_path: Path where to initialize repository.Clone a repository into a new directory.
repository_url: URL of the repository to clone.destination: Directory to clone into.Manage set of tracked repositories.
repo_path: Path to the Git repository (defaults to current directory).action: Remote action: 'list', 'add', 'remove', 'rename'.name: Remote name.url: Remote URL for add.new_name: New name for rename.