con un clic
git-workflow
Git workflow and version control operations
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Git workflow and version control operations
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Answer questions using PSKA MCP retrieval tools with citations, gaps, and no unsupported claims.
Execute PSKA digest jobs with claim-first knowledge extraction, grounded digest notes, and reviewable memory/action/relationship candidates.
Execute PSKA extraction jobs by using PSKA MCP tools, preserving ACLs, source refs, review boundaries, and JSON-compatible candidate outputs.
Help review PSKA candidates without applying changes unless PSKA review tools and approvals permit it.
Guide for using GraphRAG knowledge graph tools to search and query entities and relationships. Use this SKILL for knowledge retrieval tasks like "search for X", "find entities about Y", "what is X". This SKILL is NOT for programming, implementation, or code writing tasks. GraphRAG知识图谱工具使用指南,用于知识检索和实体查询。适用于"搜索"、"查询"、"查找"等任务,不适用于编程实现任务。
Automated code review and quality analysis
| name | git_workflow |
| description | Git workflow and version control operations |
| version | 1.0.0 |
| tags | ["git","version-control","workflow"] |
Version control operations and Git workflow management.
Use this skill when you need to:
# Create new branch
git checkout -b feature/name
# List branches
git branch -a
# Delete branch (local)
git branch -d feature/name
# Delete branch (remote)
git push origin --delete feature/name
# Stage files
git add file.py
git add .
# Commit with message
git commit -m "feat: add new feature"
# Amend last commit
git commit --amend
# Commit message format
# type(scope): subject
# types: feat, fix, docs, style, refactor, test, chore
# Merge branch into current
git merge feature/name
# Rebase current branch onto another
git rebase main
# Abort merge/rebase
git merge --abort
git rebase --abort
# View log
git log --oneline --graph --all
# View file history
git log --follow file.py
# Blame (who changed what)
git blame file.py
# Show commit details
git show <commit-hash>
# Push branch
git push -u origin feature/name
# Pull with rebase
git pull --rebase
# Fetch all remotes
git fetch --all
# View remotes
git remote -v
When conflicts occur:
Identify Conflict Files
git status
Edit Files
<<<<<<<, =======, >>>>>>>Mark Resolved
git add <resolved-file>
Complete Merge
git commit
.gitignore properly