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).
fatal: not a git repositoryThe current directory is not inside a Git repository.
You ran a git command in a directory that is not a Git repository (no .git folder). You may be in the wrong directory, the repository was not initialized, or the .git folder was deleted.
Navigate to the correct repository directory with cd. Initialize a new repository with git init. If the .git folder was accidentally deleted, clone the repository again from the remote.
git initwarning: CRLF will be replaced by LFGit is converting line endings from Windows-style (CRLF) to Unix-style (LF).
fatal: refusing to merge unrelated historiesGit refuses to merge two branches that do not share a common ancestor.
remote: error: GH006: Protected branch update failedA push to a protected branch was rejected due to branch protection rules.
error: non-fast-forward updateThe push would rewrite history on the remote branch and is rejected.
Already up to date.The branch already has all the changes from the branch you tried to merge or pull.
error: empty commit messageThe commit was aborted because the commit message is empty.