Already up to date.Already up to date
The branch already has all the changes from the branch you tried to merge or pull.
error: non-fast-forward updateThe push would rewrite history on the remote branch and is rejected.
Your local branch has diverged from the remote branch. The push is not a simple fast-forward (appending new commits) but would require rewriting remote history.
Pull and rebase first: git pull --rebase origin branch, then push. If you intentionally rewrote history (rebase, amend), use git push --force-with-lease (safer than --force). Never force push to shared branches without team coordination.
Already up to date.The branch already has all the changes from the branch you tried to merge or pull.
error: pathspec did not match any filesThe specified file pattern did not match any tracked files.
fatal: shallow update not allowedA push from a shallow clone was rejected because the remote does not allow shallow updates.
fatal: Not possible to fast-forward, abortingA pull with --ff-only failed because the branches have diverged.
nothing to commit, working tree cleanThere are no changes to commit; the working directory matches the last commit.
No local changes to saveGit stash found no modified tracked files to stash.