> You can commit it, and in fact probably should. What you don't want to do is 
> *push* that commit.
> 
> If your git is new enough, you can enable auto-stashing so your change is 
> saved across the rebase.
> 
>     git config --local --bool rebase.autostash true
> 
> If not, you can do it manually:
> 
>     git stash
>     git pull --rebase
>     git stash pop

Thanks, thanks to all also. I’ll try the various options you spelled out.

Have a great day all.

Vincent

Reply via email to