From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peter Collingbourne Subject: [PATCH 01/12] Generate unique ID for submodules created using "git submodule add" Date: Fri, 26 Mar 2010 15:25:29 +0000 Message-ID: <1269617140-7827-2-git-send-email-peter@pcc.me.uk> References: <1269617140-7827-1-git-send-email-peter@pcc.me.uk> Cc: Peter Collingbourne To: git@vger.kernel.org X-From: git-owner@vger.kernel.org Fri Mar 26 16:26:35 2010 Return-path: Envelope-to: gcvg-git-2@lo.gmane.org Received: from vger.kernel.org ([209.132.180.67]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1NvBQc-0005ou-7d for gcvg-git-2@lo.gmane.org; Fri, 26 Mar 2010 16:26:30 +0100 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754341Ab0CZPZ6 (ORCPT ); Fri, 26 Mar 2010 11:25:58 -0400 Received: from master.pcc.me.uk ([207.192.74.179]:55538 "EHLO master.pcc.me.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754149Ab0CZPZz (ORCPT ); Fri, 26 Mar 2010 11:25:55 -0400 Received: from [10.179.145.9] (helo=lapas.pcc.me.uk) by master.pcc.me.uk with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.69) (envelope-from ) id 1NvBQ1-0001o2-Ue; Fri, 26 Mar 2010 15:25:54 +0000 Received: from peter by lapas.pcc.me.uk with local (Exim 4.69) (envelope-from ) id 1NvBQ0-000234-Sg; Fri, 26 Mar 2010 15:25:52 +0000 X-Mailer: git-send-email 1.6.5 In-Reply-To: <1269617140-7827-1-git-send-email-peter@pcc.me.uk> Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Archived-At: This patch causes "git submodule add" to generate a unique ID for the submodule which is used as its name. The ID is generated by computing the SHA1 hash of the pid, date and initial path. The purpose of this patch is to avoid name conflicts which may arise due to the ability to rename submodules. Signed-off-by: Peter Collingbourne --- Documentation/git-submodule.txt | 8 +++++++- git-submodule.sh | 28 ++++++++++++++++++++++++++-- t/t7403-submodule-sync.sh | 2 +- t/t7406-submodule-update.sh | 6 +++--- t/t7407-submodule-foreach.sh | 14 +++++++------- 5 files changed, 44 insertions(+), 14 deletions(-) diff --git a/Documentation/git-submodule.txt b/Documentation/git-submodule.txt index 2502531..1bf78b6 100644 --- a/Documentation/git-submodule.txt +++ b/Documentation/git-submodule.txt @@ -10,7 +10,7 @@ SYNOPSIS -------- [verse] 'git submodule' [--quiet] add [-b branch] - [--reference ] [--] [] + [--reference ] [-n ] [--] [] 'git submodule' [--quiet] status [--cached] [--recursive] [--] [...] 'git submodule' [--quiet] init [--] [...] 'git submodule' [--quiet] update [--init] [-N|--no-fetch] [--rebase] @@ -199,6 +199,12 @@ OPTIONS (the default). This limit only applies to modified submodules. The size is always limited to 1 for added/deleted/typechanged submodules. +-n :: +--name :: + This option is only valid for the add command. + Name of the new submodule. By default, a unique identifier + is generated. + -N:: --no-fetch:: This option is only valid for the update command. diff --git a/git-submodule.sh b/git-submodule.sh index 2dd372a..f05ff4e 100755 --- a/git-submodule.sh +++ b/git-submodule.sh @@ -114,6 +114,20 @@ module_clone() } # +# Generate a unique identifier. Used to name a submodule. +# +gen_uid() +{ + path="$1" + + ( + echo "$path" + echo $$ + date + ) | git hash-object --stdin +} + +# # Add a new submodule to the working tree, .gitmodules and the index # # $@ = repo path @@ -131,6 +145,11 @@ cmd_add() branch=$2 shift ;; + -n | --name) + case "$2" in '') usage ;; esac + name=$2 + shift + ;; -q|--quiet) GIT_QUIET=1 ;; @@ -235,8 +254,13 @@ cmd_add() git add "$path" || die "Failed to add submodule '$path'" - git config -f .gitmodules submodule."$path".path "$path" && - git config -f .gitmodules submodule."$path".url "$repo" && + if test -z "$name" + then + name=$(gen_uid "$path") + fi + + git config -f .gitmodules submodule."$name".path "$path" && + git config -f .gitmodules submodule."$name".url "$repo" && git add .gitmodules || die "Failed to register submodule '$path'" } diff --git a/t/t7403-submodule-sync.sh b/t/t7403-submodule-sync.sh index 7538756..f2c66f8 100755 --- a/t/t7403-submodule-sync.sh +++ b/t/t7403-submodule-sync.sh @@ -18,7 +18,7 @@ test_expect_success setup ' git clone . super && git clone super submodule && (cd super && - git submodule add ../submodule submodule && + git submodule add -n submodule ../submodule submodule && test_tick && git commit -m "submodule" ) && diff --git a/t/t7406-submodule-update.sh b/t/t7406-submodule-update.sh index 1382a8e..5bcac8f 100755 --- a/t/t7406-submodule-update.sh +++ b/t/t7406-submodule-update.sh @@ -31,7 +31,7 @@ test_expect_success 'setup a submodule tree' ' git clone super rebasing && git clone super merging && (cd super && - git submodule add ../submodule submodule && + git submodule add -n submodule ../submodule submodule && test_tick && git commit -m "submodule" && git submodule init submodule @@ -49,12 +49,12 @@ test_expect_success 'setup a submodule tree' ' git commit -m "submodule update" ) && (cd super && - git submodule add ../rebasing rebasing && + git submodule add -n rebasing ../rebasing rebasing && test_tick && git commit -m "rebasing" ) && (cd super && - git submodule add ../merging merging && + git submodule add -n merging ../merging merging && test_tick && git commit -m "rebasing" ) diff --git a/t/t7407-submodule-foreach.sh b/t/t7407-submodule-foreach.sh index 2a52775..a0390dd 100755 --- a/t/t7407-submodule-foreach.sh +++ b/t/t7407-submodule-foreach.sh @@ -21,9 +21,9 @@ test_expect_success 'setup a submodule tree' ' git clone super submodule && ( cd super && - git submodule add ../submodule sub1 && - git submodule add ../submodule sub2 && - git submodule add ../submodule sub3 && + git submodule add -n sub1 ../submodule sub1 && + git submodule add -n sub2 ../submodule sub2 && + git submodule add -n sub3 ../submodule sub3 && git config -f .gitmodules --rename-section \ submodule.sub1 submodule.foo1 && git config -f .gitmodules --rename-section \ @@ -82,28 +82,28 @@ test_expect_success 'setup nested submodules' ' git clone submodule nested3 && ( cd nested3 && - git submodule add ../submodule submodule && + git submodule add -n submodule ../submodule submodule && test_tick && git commit -m "submodule" && git submodule init submodule ) && ( cd nested2 && - git submodule add ../nested3 nested3 && + git submodule add -n nested3 ../nested3 nested3 && test_tick && git commit -m "nested3" && git submodule init nested3 ) && ( cd nested1 && - git submodule add ../nested2 nested2 && + git submodule add -n nested2 ../nested2 nested2 && test_tick && git commit -m "nested2" && git submodule init nested2 ) && ( cd super && - git submodule add ../nested1 nested1 && + git submodule add -n nested1 ../nested1 nested1 && test_tick && git commit -m "nested1" && git submodule init nested1 -- 1.6.5