Stats
Actions
Tags
From git-essentials
Essential Git commands and workflows for version control, branching, and collaboration.
How this skill is triggered — by the user, by Claude, or both
Slash command
/git-essentials:git-essentialsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Essential Git commands for version control and collaboration.
Essential Git commands for version control and collaboration.
git config --global user.name "Your Name"
git config --global user.email "[email protected]"
git init
git clone https://github.com/user/repo.git
git status
git add file.txt
git add .
git commit -m "Commit message"
git commit -am "Message"
git commit --amend --no-edit
git diff
git diff --staged
git branch
git branch -a
git checkout -b feature-name
git switch -c feature-name
git branch -d branch-name
git branch -D branch-name
git merge feature-name
git merge --no-ff feature-name
git merge --abort
git remote -v
git remote add origin https://github.com/user/repo.git
git fetch origin
git pull
git pull --rebase
git push
git push -u origin branch-name
git push --force-with-lease
git log --oneline
git log --graph --oneline --all
git log --author="Name"
git log --since="2 weeks ago"
git log -S "function_name"
git blame file.txt
git restore file.txt
git restore --staged file.txt
git reset --soft HEAD~1
git reset --hard HEAD~1
git revert commit-hash
git stash
git stash save "Work in progress"
git stash list
git stash pop
git stash apply stash@{2}
git stash drop stash@{0}
git rebase main
git rebase -i HEAD~3
git rebase --continue
git rebase --abort
git tag -a v1.0.0 -m "Version 1.0.0"
git push origin v1.0.0
git push --tags
git tag -d v1.0.0
[alias]
st = status
co = checkout
br = branch
ci = commit
last = log -1 HEAD
visual = log --graph --oneline --all
amend = commit --amend --no-edit
npx claudepluginhub billyfranklim1/claude-skills --plugin git-essentialsGuides Git workflows in Claude Code: detects repo state, crafts conventional commits, creates PRs via GitHub CLI, manages branches, resolves merge conflicts.
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.