问题:git fetch, push 后更新了代码,但是没有更新本地仓库
原因:没有在git的配置里设置 remote.origin.fetch
解决:
git config --local --add remote.origin.fetch +refs/heads/*:refs/remotes/origin/*
在湖闻樟注:
本文地址:http://my.oschina.net/soarwilldo/blog/734839
参考:http://stackoverflow.com/questions/9841433/git-fetch-not-update-my-local-repository