Agent skill

git-essentials

Essential Git commands and workflows for version control, branching, and collaboration.

BioTender-maxgithub.com/BioTender-maxGitHub ↗
claude-codeNOASSERTION
Install
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.

Facts
Files in the skill folder: 1
SKILL.md size: 8 KB
Bundled scripts: none
Requires: []
Path: skills/neuroclaw/git-essentials/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 144
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. Overview
  2. Initial Setup
  3. Basic Workflow
  4. Staging and committing
  5. Viewing changes
  6. Branching & Merging
  7. Branch management
  8. Merging
  9. Remote Operations
  10. Managing remotes
  11. Syncing with remote
  12. History & Logs
  13. Viewing history
  14. Searching history
Commands it runs
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
More from awesome-bio-agent-skills
All skills →
About this skill
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.

Keep going