OneLinersCommand workbench
Verified diagnostic signature

Git stopped to protect local changes or because a merge requires resolution.

Match output from git, understand the likely cause, then continue with sourced, read-only checks.

Confidence
high
Platforms
linux · macos · windows
Verified
2026-07-24
Recognized output

Signature matched locally

cannot pull with rebase: You have unstaged changes

OneLiners matches this pattern in your browser. Your pasted output is not stored or indexed.

Likely causes

What usually produces this signal

  1. Overlapping changes
  2. Dirty working tree
  3. Interrupted merge or rebase
  4. Untracked path collision
Safe next checks

Collect evidence before changing the system

01

Show concise branch and working-tree status

git status --short --branch

The output matches the expected target and exits without an error.

02

Summarize changed files and line counts in Git

git diff --stat

The output matches the expected target and exits without an error.

03

List saved Git stashes

git stash list

The output matches the expected target and exits without an error.

04

Preview untracked files Git would remove

git clean -nd

The output matches the expected target and exits without an error.