Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 git 新手,我想知道每次上网本上网时是否必须执行“git fetch”,这样我就可以从存储库中获得最新版本的代码。
是的,git除非您明确告诉它,否则不会从远程存储库中获取更改。不,从某种意义上说,如果您不想,就不必抓住这些变化;您可以在闲暇时运行git fetch和合并它发现的任何更改。
git
git fetch
你不必,这就是为什么它是 DVCS。但是,如果您想获得最新版本,是的,您应该pull从远程获取。
pull
Git 初学者:权威实用指南