error: non-fast-forward updateerror: non-fast-forward update
The push would rewrite history on the remote branch and is rejected.
warning: CRLF will be replaced by LFGit is converting line endings from Windows-style (CRLF) to Unix-style (LF).
You are on Windows and files use CRLF line endings, but the repository is configured to use LF. Git automatically converts line endings based on core.autocrlf and .gitattributes settings.
This is a warning, not an error. Configure: git config core.autocrlf true (Windows) or input (Mac/Linux). Add a .gitattributes file with: * text=auto. This ensures consistent line endings across platforms.
git config core.autocrlf trueerror: non-fast-forward updateThe push would rewrite history on the remote branch and is rejected.
fatal: Authentication failedGit authentication with the remote server failed.
You are in 'detached HEAD' stateHEAD is pointing to a specific commit rather than a branch, meaning new commits will be orphaned.
Permission denied (publickey)SSH authentication failed because the server did not accept your public key.
fatal: No submodule mapping foundGit submodules are referenced but not properly initialized.
There is no tracking information for the current branchThe current branch is not set up to track a remote branch.