error: empty commit messageerror: empty commit message
The commit was aborted because the commit message is empty.
There is no tracking information for the current branchThe current branch is not set up to track a remote branch.
The local branch was created without setting an upstream tracking branch. Git does not know which remote branch to pull from or push to.
Set the upstream branch: git branch --set-upstream-to=origin/branch-name. Or push with upstream: git push -u origin branch-name. This only needs to be done once per branch.
git branch --set-upstream-to=origin/main mainerror: empty commit messageThe commit was aborted because the commit message is empty.
error: non-fast-forward updateThe push would rewrite history on the remote branch and is rejected.
You are in 'detached HEAD' stateHEAD is pointing to a specific commit rather than a branch, meaning new commits will be orphaned.
remote: error: File is too largeA file exceeds the maximum file size allowed by the remote hosting service.
error: could not apply commitA conflict occurred while applying a commit during rebase.
error: Cannot delete branch currently checked outYou cannot delete the branch you are currently on.