Git Cli 1.0.0
by @kenswj
Helper for using the Git CLI to inspect, stage, commit, branch, and synchronize code changes. Use when the user wants to understand or perform Git operations...
clawhub install git-cli-1-0-0📖 About This Skill
name: git-cli description: Helper for using the Git CLI to inspect, stage, commit, branch, and synchronize code changes. Use when the user wants to understand or perform Git operations from the command line, including safe status checks, diffs, branching, stashing, and syncing with remotes.
Git CLI Helper
This skill explains how to use the Git command line for everyday development tasks in a repository.
When to Use
Use this skill when:
Requirements
git --version succeeds).git init or git clone.When uncertain, suggest the user run:
git status
to see whether the current folder is a Git repository.
Safety Guidelines
git status, git diff, git log) before suggesting changing commands.git reset --hard
- git clean -fdx
- git push --force
Common Workflows
1. Inspect current state
Check what has changed and whether there are untracked files:
git status
See detailed changes in the working tree:
git diff # unstaged changes
git diff --staged # staged (to-be-committed) changes
2. Stage and unstage changes
Stage a specific file:
git add path/to/file
Stage all tracked and untracked changes:
git add .
Unstage a file (keep changes in the working tree):
git restore --staged path/to/file
3. Create commits
Create a commit with a message:
git commit -m "short, descriptive message"
If the user prefers a multi-line message, suggest:
git commit
which opens their editor.
4. Branching and switching
Create and switch to a new branch:
git checkout -b feature/my-branch
Switch to an existing branch:
git checkout main
List local branches:
git branch
5. Synchronize with remote
If the repository already has a remote (for example origin):
git fetch
git pull
git push -u origin
For subsequent pushes on the same branch:
git push
6. Cloning and initializing
Clone an existing remote repository:
git clone
Initialize a new repository in the current folder:
git init
Optionally add a remote:
git remote add origin
7. Stashing work-in-progress
When the user needs to temporarily put aside local changes:
git stash
List stashes:
git stash list
Apply and keep the top stash:
git stash apply
Apply and drop the top stash:
git stash pop
Viewing History and Blame
Show recent commits (compact format):
git log --oneline --decorate --graph --all
See who last changed each line of a file:
git blame path/to/file
Troubleshooting Tips
git init (if appropriate), or
- Cloning with git clone .
git pull --rebase or git pull (depending on the team’s policy), then retry git push.
git add,
- Then complete the merge or rebase with git commit or git rebase --continue.