这是我经常使用的:
git fetch upstream develop;
git reset --hard upstream/develop;
git clean -d --force;
請注意,這是一個很好的做法,不做變化到您的當地主/開發分支,但相反,支票到另一個分支,任何變化,與分支名稱由變化類型,例如 feat/, chore/, fix/,等,所以你只需要拖動變化,不推任何變化從主。
git remote --verbose
git checkout develop;
git commit -m "Saving work.";
git branch saved-work;
git fetch upstream develop;
git reset --hard upstream/develop;
git clean -d --force
git add .
git commit -m "Reset to upstream/develop"
git push --force origin develop
git merge -s recursive -X theirs develop
使用时
git merge -s recursive -X ours develop
与所有的变化相结合:
git commit -m "Saving work.";
git branch saved-work;
git checkout develop;
git fetch upstream develop;
git reset --hard upstream/develop;
git clean -d --force;
git add .;
git commit -m "Reset to upstream/develop";
git push --force origin develop;
git checkout branch_name;
git merge develop;
请注意,而不是上流/开发,您可以使用一个承诺标签,其他分支名称等 使用一个 CLI 工具,如 Oh My Zsh 检查您的分支是绿色的,表明没有什么承诺和工作目录是干净的(这是确认或也可以通过 git 状态验证)。