fatal: bad revisionfatal: bad revision
The specified revision (commit hash, branch name, tag) does not exist.
fatal: branch is already checked out at another worktreeThe branch cannot be checked out because it is already checked out in another worktree.
Git worktrees require each branch to be checked out in only one worktree at a time. The branch you want to checkout is already being used in another linked worktree.
List worktrees: git worktree list. Remove the worktree using the branch: git worktree remove path. Or check out a different branch in the other worktree first. Create a new branch if needed.
fatal: bad revisionThe specified revision (commit hash, branch name, tag) does not exist.
fatal: ambiguous argumentGit cannot determine if the argument refers to a revision, path, or something else.
nothing to commit, working tree cleanThere are no changes to commit; the working directory matches the last commit.
error: Cannot delete branch currently checked outYou cannot delete the branch you are currently on.
fatal: shallow update not allowedA push from a shallow clone was rejected because the remote does not allow shallow updates.
fatal: A branch named 'x' already existsA branch with the specified name already exists in the repository.