05-infrastructure/version-control-and-jujutsu/SKILL.md
[日本語版](../../ja/05-infrastructure/version-control-and-jujutsu/SKILL.md) # Version Control and Jujutsu > Git is the foundation of modern development, yet few truly understand its internals. This guide dives deep into Git's internal object model, advanced operations, and the next-generation VCS Jujutsu (jj) -- exploring the depths of version control. ## Target Audience - Engineers who want to understand Git's internal architecture - Developers looking to master advanced Git operations (rebase,
npx skillsauth add gaku52/claude-code-skills 05-infrastructure/version-control-and-jujutsuInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
日本語版
Git is the foundation of modern development, yet few truly understand its internals. This guide dives deep into Git's internal object model, advanced operations, and the next-generation VCS Jujutsu (jj) -- exploring the depths of version control.
| # | File | Description | |---|------|-------------|
| # | File | Description | |---|------|-------------|
| # | File | Description | |---|------|-------------|
Git Internal Objects:
blob — File contents
tree — Directory structure
commit — Snapshot + metadata
tag — Named reference
Advanced Git Commands:
git rebase -i HEAD~5 — Interactively edit the last 5 commits
git bisect start/bad/good — Identify the commit that introduced a bug
git reflog — View HEAD movement history
git worktree add ../feature — Work on a branch in a separate directory
git log -S "keyword" — Search for code changes
Jujutsu (jj) Basics:
jj init — Initialize a repository
jj status — Check status
jj describe -m "message" — Set commit message
jj new — Create a new change set
jj squash — Squash into parent
jj git push — Push to Git remote
tools
Fundamentals of modern web development. Framework selection (React, Vue, Next.js), project architecture, state management, routing, build tools, and CSS strategy best practices.
development
# React Development — Complete Guide > A comprehensive guide to building modern React applications with TypeScript. Covers fundamentals through advanced patterns, Hooks mastery, TypeScript integration, performance optimization, and algorithm internals. ## Target Audience - Developers new to React who want a solid foundation - Intermediate React developers looking to deepen their understanding of Hooks and TypeScript patterns - Engineers who want to understand React's internal algorithms (Virt
development
# Node.js Development Skill > A practical guide collection for Node.js development. Covers all aspects of Node.js application development, including Express, NestJS, asynchronous patterns, and performance optimization. ## Overview This skill covers the following topics: - **Express & NestJS**: When to use a lightweight framework vs. an enterprise framework - **Asynchronous Patterns**: Promise, async/await, Event Emitter, Streams, Worker Threads, Cluster - **Performance Optimization**: Memory
development
# Backend Development — Complete Guide > A comprehensive guide to backend engineering. Covers the fundamentals of HTTP, REST API design, databases, authentication, environment configuration, and algorithm proofs — everything needed to build robust server-side systems. ## Target Audience - Developers new to backend engineering - Frontend engineers expanding toward full-stack development - Engineers looking to solidify their understanding of server-side fundamentals ## Prerequisites - Basic p