git-essentials
Essential Git commands and workflows for version control, branching, and collaboration.
npx skills add BioTender-max/awesome-bio-agent-skills --skill git-essentials --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Git Essentials ## Overview `git-essentials` is the **NeuroClaw base skill** for all version control operations. It provides the essential Git commands for initializing repositories, staging, committing, branching, merging, working with remotes, viewing history, undoing changes, stashing, rebasing, tagging, and common daily workflows. This skill serves as the foundation for any project that requires reproducible code management, experiment tracking, or collaboration inside NeuroClaw. **Research use only** — always combine with `git-workflows` for advanced operations. ## Initial Setup ```bash # Configure user git config --global user.name "Your Name" git config --global user.email "your@email.com" # Initialize repository git init # Clone repository git clone https://github.com/user/repo.git git clone https://github.com/user/repo.git custom-name ``` ## Basic Workflow ### Staging and committing ```bash # Check status git status # Add files to staging git add file.txt git add . git add -A # All changes including deletions # Commit changes git commit -m "Commit message" # Add and commit in one step git commit -am "Message" # Amend last commit git commit --amend -m "New message" git com
- Overview
- Initial Setup
- Basic Workflow
- Staging and committing
- Viewing changes
- Branching & Merging
- Branch management
- Merging
- Remote Operations
- Managing remotes
- Syncing with remote
- History & Logs
- Viewing history
- Searching history
Configure user git config --global user.name "Your Name" git config --global user.email "your@email.com" Initialize repository git init Clone repository git clone https://github.com/user/repo.git git clone https://github.com/user/repo.git custom-name Check status git status
What does the git-essentials skill do?
Essential Git commands and workflows for version control, branching, and collaboration.
How do I install it?
Run `npx skills add BioTender-max/awesome-bio-agent-skills --skill git-essentials --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From BioTender-max/awesome-bio-agent-skills, a repository with 144 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
