如何设置git module,让引用的项目默认采用最新的提交
因为团队合作老是有人让模块引用回滚到某一次。
业精于勤,荒于嬉;行成于思,毁于随。
git config alias.pullall '!f(){ git pull "$@" && git submodule update --init --recursive; }; f'
git config alias.pullall '!f(){ git pull "$@" && git submodule update --init --recursive; }; f'