我在工作中一直使用git pull --rebase --autostash
(如果重要的话,在git bash中)。
但由于某些原因,我的一些同事无法让它工作,现在我发现它在家里不起作用。
在家里我在macbook上使用git 2.6.3。
错误消息只是:error: unknown option `autostash'
有什么想法吗?
答案 0 :(得分:1)
该选项仅适用于Git 2。9(2016年6月)
请参阅“Can “git pull
” automatically stash and pop pending changes?”
您可以添加配置
git config pull.rebase true
git config rebase.autoStash true
这样,只需要git pull
。