2014-08-20

修複oh-my-zsh 無法更新

 2014/08/20 新增 git status 除錯
oh my zsh提示更新執行時遇到錯誤
Cannot pull with rebase: You have unstaged changes.
Please commit or stash them.

只要將~/.oh-my-zsh/tools/upgrade.sh修改就能修複
搜尋
if git pull --rebase origin master
--rebase刪掉存檔,在執行一次更新即可

~/.oh-my-zsh/tools/upgrade.sh

08/20 又遇上了不能升級的錯誤,但這次沒有跳錯誤訊息指出那裡版本不相同,這次用 git status 找出跟 git 不相同的部份
~/.oh-my-zsh
git status

Untracked files:

completion/
lib/wordchars.zsh
plugins/dbox/
plugins/dkms/
plugins/modprobed/
themes/junkfood.zsh-theme.old
themes/my.zsh-theme


最後將以上檔案移到 ~/.oh-my-zsh/custom 手動升級就沒問題
git pull