赞
踩
Android studio上更新本地仓库,有三种:update project,fetch,pull。
update project
git fetch
git pull
git pull 从远程拉取最新版本 到本地 自动合并 merge git fetch 从远程获取最新版本 到本地 不会自动合并 merge 实际使用中 使用git fetch 更安全 在merge之前可以看清楚 更新情况 再决定是否合并。 csdn stack
update project 会更新项目所有module,但是pull只会更新一个。 参考stack