error: could not apply commitRebase conflict
A conflict occurred while applying a commit during rebase.
error: Entry has been modified in the work treeA Git operation was blocked because files in the working tree have been modified.
You attempted an operation that requires a clean working tree (like checkout or reset) while having uncommitted modifications to tracked files.
Commit your changes: git add . && git commit -m 'WIP'. Or stash them: git stash. Or discard changes: git checkout -- file (careful, destructive). Then retry the operation.
error: could not apply commitA conflict occurred while applying a commit during rebase.
fatal: 'origin' does not appear to be a git repositoryGit could not connect to the specified remote repository.
fatal: Unable to create lock fileA Git lock file (.lock) exists, preventing the operation.
Permission denied (publickey)SSH authentication failed because the server did not accept your public key.
error: Your local changes would be overwrittenGit refuses to perform an operation because it would overwrite uncommitted local changes.
fatal: remote origin already existsA remote with the specified name is already configured.