error: Entry has been modified in the work treeerror: Entry has been modified in the work tree
A Git operation was blocked because files in the working tree have been modified.
error: sparse-checkout is not enabledA sparse-checkout operation was attempted but the feature is not enabled.
You tried to modify sparse-checkout patterns without first enabling the sparse-checkout feature. Sparse checkout must be initialized before it can be configured.
Initialize sparse checkout: git sparse-checkout init --cone. Then set patterns: git sparse-checkout set dir1 dir2. Verify with: git sparse-checkout list. Use --no-cone for regex-based patterns.
git sparse-checkout init --coneerror: Entry has been modified in the work treeA Git operation was blocked because files in the working tree have been modified.
error: cannot rebase: You have unstaged changesGit refuses to rebase because there are uncommitted changes in the working directory.
error: Your local changes would be overwrittenGit refuses to perform an operation because it would overwrite uncommitted local changes.
error: LFS object not foundA Git LFS tracked file could not be downloaded from the LFS server.
You are in 'detached HEAD' stateHEAD is pointing to a specific commit rather than a branch, meaning new commits will be orphaned.
remote: error: GH006: Protected branch update failedA push to a protected branch was rejected due to branch protection rules.