warning: CRLF will be replaced by LFwarning: CRLF will be replaced by LF
Git is converting line endings from Windows-style (CRLF) to Unix-style (LF).
error: cannot rebase: You have unstaged changesGit refuses to rebase because there are uncommitted changes in the working directory.
You have modified files that are not staged or committed. Git requires a clean working directory to perform a rebase because it needs to modify files during the process.
Commit your changes: git add . && git commit -m 'WIP'. Or stash them: git stash, rebase, then git stash pop. Or discard changes: git checkout . (destructive).
warning: CRLF will be replaced by LFGit is converting line endings from Windows-style (CRLF) to Unix-style (LF).
fatal: branch is already checked out at another worktreeThe branch cannot be checked out because it is already checked out in another worktree.
remote: error: GH006: Protected branch update failedA push to a protected branch was rejected due to branch protection rules.
fatal: Authentication failedGit authentication with the remote server failed.
error: failed to push some refsThe push was rejected because the remote has changes you do not have locally.
fatal: A branch named 'x' already existsA branch with the specified name already exists in the repository.