LinuxCommandLibrary

git-continue

Resume interrupted git operations

TLDR

Continue interrupted operation

$ git continue
copy

SYNOPSIS

git continue

DESCRIPTION

git continue resumes an interrupted git operation. It's a convenience command from git-extras that detects the pending operation (rebase, merge, cherry-pick, revert) and runs the appropriate continue command.
Instead of remembering git rebase --continue, git cherry-pick --continue, or git merge --continue, a single git continue handles any interrupted operation.
The command detects which operation is currently paused and executes the appropriate continue command, reducing cognitive overhead during complex conflict resolution workflows.

CAVEATS

Part of git-extras package. Requires pending operation. Conflicts must be resolved first.

HISTORY

git continue was added to git-extras by TJ Holowaychuk to simplify the common workflow of continuing interrupted git operations.

SEE ALSO

> TERMINAL_GEAR

Curated for the Linux community

Copied to clipboard

> TERMINAL_GEAR

Curated for the Linux community