[問題] git的local master如何還原

看板Programming作者 (知足常樂)時間9年前 (2015/07/28 09:38), 編輯推噓1(104)
留言5則, 1人參與, 最新討論串1/1
請教版上大大,git的狀況如下圖: https://drive.google.com/open?id=0BzNx6G9C9YE0REFNa0M1QVhyXzA 要將9a9的local master還原到842的commit 讓local的master跟local HEAD及origin的HEAD/master可以在同一個commit 有沒有什麼好方法可以達到? -- ※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 203.208.196.50 ※ 文章網址: https://www.ptt.cc/bbs/Programming/M.1438047520.A.618.html

07/29 03:09, , 1F
git checkout master && \
07/29 03:09, 1F

07/29 03:10, , 2F
git pull --rebase && git push
07/29 03:10, 2F

07/29 03:11, , 3F
如果要保留 uncommitted change,那就
07/29 03:11, 3F

07/29 03:11, , 4F
在最前下 git stash、最後下
07/29 03:11, 4F

07/29 03:11, , 5F
git stash pop
07/29 03:11, 5F
文章代碼(AID): #1LjjqWOO (Programming)
文章代碼(AID): #1LjjqWOO (Programming)