From: Carl Fürstenberg Date: Thu, 17 Mar 2011 18:50:53 +0000 (+0100) Subject: Merge when updating submodules on make X-Git-Url: http://git.asbjorn.biz/?p=jquery.git;a=commitdiff_plain;h=a2faed347de389d6f667a4e98576398db88d1a14 Merge when updating submodules on make When running make, the submodule update will remove all local changes. Adding flag --rebase or --merge does solve the issue. rebase will probably make it cleaner, but it might stop on conflict, thus --merge will result in fewer (probably none). --- diff --git a/Makefile b/Makefile index 84816a1..525d3a1 100644 --- a/Makefile +++ b/Makefile @@ -49,7 +49,7 @@ ${DIST_DIR}: @@mkdir -p ${DIST_DIR} init: - @@if [ -d .git ]; then git submodule update --init --recursive; fi + @@if [ -d .git ]; then git submodule update --init --recursive --merge; fi jquery: init ${JQ} jq: init ${JQ}