Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/bobcob7/dot-tools --skill git명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | git |
| description | Git commands, workflows, and troubleshooting |
| argument-hint | [command or question] |
| allowed-tools | Bash, Read |
Help with Git based on $ARGUMENTS.
git status # Show working tree status
git add <file> # Stage file
git add -p # Stage interactively (patch mode)
git commit -m "message" # Commit staged changes
git push # Push to remote
git pull # Fetch and merge
git branch # List branches
git branch <name> # Create branch
git checkout <branch> # Switch branch
git checkout -b <name> # Create and switch
git merge <branch> # Merge branch into current
git rebase <branch> # Rebase current onto branch
git branch -d <name> # Delete branch (safe)
git branch -D <name> # Delete branch (force)
git log --oneline # Compact log
git log --graph # With branch graph
git log -p <file> # Show changes to file
git blame <file> # Show who changed each line
git show <commit> # Show commit details
git checkout -- <file> # Discard working changes
git reset HEAD <file> # Unstage file
git reset --soft HEAD~1 # Undo commit, keep changes staged
git reset --hard HEAD~1 # Undo commit, discard changes
git revert <commit> # Create commit that undoes changes
git stash # Stash changes
git stash pop # Apply and remove stash
git stash list # List stashes
git stash drop # Remove stash
git remote -v # List remotes
git remote add <name> <url> # Add remote
git fetch <remote> # Fetch without merge
git push -u origin <branch> # Push and set upstream
git checkout -b feature/namegit push -u origin feature/namegit fetch origingit rebase origin/maingit push --force-with-lease