From 27925032cd5aec8805185679e01c687c40bbd617 Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Mon, 22 Jul 2013 11:55:49 +0200 Subject: g: ignore submodule changes Change-Id: I6125dd018615bc7aa18bacc838ea602ccb0fabc1 --- g | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/g b/g index e273171ae7c2..4c0184cc9b2d 100755 --- a/g +++ b/g @@ -90,6 +90,14 @@ local hook for repo in ${SUBMODULES_ALL?} ; do refresh_submodule_hooks $repo done + # In our workflow, it's always gerrit that does the submodule updates, so + # better ignoring them to avoid accidentally including those changes in our + # commits. + # 'git submodule status' can be still used to see if a submodule has such + # changes. + for repo in ${SUBMODULES_CONFIGURED?} ; do + git config submodule.$repo.ignore all + done popd > /dev/null } -- cgit