automatically stash save/pop changes on git rebase?

前端 未结 5 1771
再見小時候
再見小時候 2021-01-30 20:40

my git workflow uses rebase a lot. I always fetch upstream changes (the main repo i forked from) and then merge to my branches, and then rebase to remove useless (to me :D) merg

5条回答
  •  深忆病人
    2021-01-30 21:35

    The entire workflow in one command, including the fetching:

    git pull --rebase --autostash [...]
    

提交回复
热议问题