error: Cannot delete branch currently checked outerror: Cannot delete current branch
You cannot delete the branch you are currently on.
error: pathspec did not match any filesThe specified file pattern did not match any tracked files.
The file path or pattern you specified does not match any files known to Git. The file may not exist, may be untracked, may have been deleted, or the branch name may be interpreted as a file path.
Check the file path for typos. Verify the file exists: git ls-files path. Use -- to separate branch names from file paths: git checkout branch -- file. Stage new files first with git add.
error: Cannot delete branch currently checked outYou cannot delete the branch you are currently on.
fatal: Unable to create lock fileA Git lock file (.lock) exists, preventing the operation.
error: Your local changes would be overwrittenGit refuses to perform an operation because it would overwrite uncommitted local changes.
error: could not apply (cherry-pick)A conflict occurred while cherry-picking a commit.
fatal: refname is not a valid ref nameThe branch or tag name contains invalid characters.
fatal: A branch named 'x' already existsA branch with the specified name already exists in the repository.