You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix CI rebase: stash everything before pull, pop with --index
git pull --rebase refuses to run with either staged OR unstaged changes.
--keep-index only stashed the unstaged side, leaving staged changes in
the index which caused 'Your index contains uncommitted changes'.
Switch to plain git stash (stashes everything) so the tree is fully
clean for the rebase, then git stash pop --index to restore both the
working tree changes and the staged index state.
0 commit comments