Marketplace git
Basic git operations for repository inspection. Use for git diff, git log, git status, git remote, and other read-only git commands.
install
source · Clone the upstream repo
git clone https://github.com/aiskillstore/marketplace
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/aiskillstore/marketplace "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/eteissonniere/git" ~/.claude/skills/aiskillstore-marketplace-git-cad3d6 && rm -rf "$T"
manifest:
skills/eteissonniere/git/SKILL.mdsource content
Git CLI
Purpose
This skill provides access to basic git commands for inspecting repository state. Use this for read-only operations like viewing diffs, logs, and status.
Command Reference
Repository State
| Action | Command |
|---|---|
| Status | |
| Remote URLs | |
| Current branch | |
| All branches | |
Viewing Changes
| Action | Command |
|---|---|
| Unstaged changes | |
| Staged changes | |
| All changes | |
| Changes vs branch | |
| Changed files only | |
| Stat summary | |
History
| Action | Command |
|---|---|
| Recent commits | |
| Branch commits | |
| Commit details | |
| File history | |
| Blame | |
Inspection
| Action | Command |
|---|---|
| Show commit | |
| Show file at commit | |
| List tracked files | |
Behavioral Guidelines
- Read-only: This skill is for inspection only, not for making changes
- Prefer short output: Use
,--oneline
, or--stat
flags to limit output-n - Branch detection: Use
to identify the current branchgit branch --show-current - Platform detection: Use
to determine if GitHub or GitLab, then use the appropriate skillgit remote -v