我正在爲我的Git工作流寫一些腳本。Git:重置其他分支到當前沒有結帳
我需要將其他(現有)分支重置爲當前分支,而無需結帳。
前:
CurrentBranch: commit A
OtherBranch: commit B
後:
等效的$ git checkout otherbranch
$ git reset --soft currentbranch
$ git checkout currentbranch
CurrentBranch: commit A
OtherBranch: commit A
(注--soft:我不想影響工作樹。)
這可能嗎?
有誰知道這是不是也有可能在例如:It? – zedoo 2018-01-24 17:26:51