[Git] 將 git stash 記錄重新應用到正確的分支上
有時會 用 git stash 命令暫存目前的修改工作, 先去修另一個臨時的 bug, 之後再用 git stash pop 還原原本的進度。 不…
有時會 用 git stash 命令暫存目前的修改工作, 先去修另一個臨時的 bug, 之後再用 git stash pop 還原原本的進度。 不…
今天臨時要修改一個檔案,先用 git status 看一下目前的狀況: testuser@localhost $ git status On branch ma…
今天想要把 App 新的更新釋出了,但是有其他的東西改到一半, 不想要放進去,正好來試試 git 的 stash 功能 (一直以來我都只有用 git 的 add…