use-jj-not-git

Translate Git commands into Jujutsu (jj) equivalents for version control workflows.

9|1|Updated Sep 7, 2025
One-click install
npx skills add https://github.com/martinemde/dotfiles --skill use-jj-not-git
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: use-jj-not-git
Source: https://github.com/martinemde/dotfiles/tree/main/home/dot_claude/skills/use-jj-not-git
Command: npx skills add https://github.com/martinemde/dotfiles --skill use-jj-not-git

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill helps users navigate and utilize the Jujutsu (jj) version control system, offering an alternative to Git for managing code history and workflows.

Core Features & Use Cases

  • Jujutsu Fundamentals: Learn core commands for committing, branching (bookmarks), and managing changes.
  • Git Translation: Understand how to translate common Git commands into their Jujutsu equivalents.
  • Advanced Workflows: Explore topics like conflict resolution, rebasing, and working with multiple remotes in Jujutsu.
  • Use Case: A developer new to Jujutsu can use this Skill to understand how to make their first commit, view their history, and push their changes to a remote repository.

Quick Start

Use jj commit -m "Your commit message" to finalize your current changes and start a new empty commit.

Frequently Asked Questions about use-jj-not-git

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I translate common Git commands to Jujutsu version control?

Jujutsu differs from Git by using automatic working copy commits and eliminating the staging area entirely. This Skill explains these unique version control features alongside first-class conflict handling for managing code history.

How do I make my first commit and push changes in Jujutsu?

To make your first commit in Jujutsu, use `jj commit -m "Your commit message"` to finalize current changes and start a new empty commit. This Skill covers fundamental commands for committing, branching, and pushing to remote repositories.

How does conflict resolution work in Jujutsu compared to Git?

Jujutsu features first-class conflict handling that differs from Git's standard resolution process. This Skill details advanced workflows for conflict resolution, rebasing, and working with multiple remotes in the jj version control system.

Do I need prior version control experience to use Jujutsu?

Yes, you need familiarity with version control concepts to effectively leverage Jujutsu. This Skill provides detailed explanations and command mappings designed for developers already understanding code history management workflows.