원클릭으로
git-workflow
Git workflow and version control operations
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Git workflow and version control operations
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
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
SOC 직업 분류 기준
| 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