error: Your local changes would be overwrittenerror: Your local changes would be overwritten
Git refuses to perform an operation because it would overwrite uncommitted local changes.
error: No stash entries foundThere are no stashed changes to apply or pop.
You ran git stash pop or git stash apply but the stash is empty. The stash may have already been applied and dropped, or you may be in a different repository.
Check available stashes with git stash list. If empty, your changes may have already been applied. Check git log for recent commits that may contain the changes you expected to be stashed.
error: Your local changes would be overwrittenGit refuses to perform an operation because it would overwrite uncommitted local changes.
fatal: index file corruptThe Git index file (.git/index) is corrupted.
fatal: tag already existsA tag with the specified name already exists.
fatal: refusing to merge unrelated historiesGit refuses to merge branches that do not share a common ancestor commit.
fatal: not a git repositoryThe current directory is not inside a Git repository.
fatal: Unable to create lock fileA Git lock file (.lock) exists, preventing the operation.