There is no tracking information for the current branchThere is no tracking information for the current branch
The current branch is not set up to track a remote branch.
error: could not apply commitA conflict occurred while applying a commit during rebase.
During git rebase, a commit could not be applied cleanly because it conflicts with changes in the target branch. Each conflicting commit must be resolved individually.
Resolve the conflicts in the affected files. Stage the resolved files: git add file. Continue the rebase: git rebase --continue. To abort: git rebase --abort. Repeat for each conflicting commit.
# Fix conflicts then: git rebase --continueThere is no tracking information for the current branchThe current branch is not set up to track a remote branch.
fatal: refusing to merge unrelated historiesGit refuses to merge two branches that do not share a common ancestor.
error: failed to push some refsThe push was rejected because the remote has changes you do not have locally.
error: object file is emptyA Git object file is corrupted and contains no data.
error: pathspec did not match any filesThe specified file pattern did not match any tracked files.
warning: Large files detectedGit detected large files that may cause repository bloat.