git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Use '-f' option to point to the .gitmodules file
@ 2008-05-15  7:42 imyousuf
  2008-05-15  8:56 ` Johannes Schindelin
  0 siblings, 1 reply; 3+ messages in thread
From: imyousuf @ 2008-05-15  7:42 UTC (permalink / raw)
  To: git; +Cc: gitster, Imran M Yousuf

From: Imran M Yousuf <imyousuf@smartitengineering.com>

'git config' has a '-f' option that takes the file to parse.
Using it rather than the environment variable seems more logical
and simplified.

Signed-off-by: Imran M Yousuf <imyousuf@smartitengineering.com>
---
 git-submodule.sh |    9 ++++-----
 1 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/git-submodule.sh b/git-submodule.sh
index 67f7a28..b4b7d28 100755
--- a/git-submodule.sh
+++ b/git-submodule.sh
@@ -74,8 +74,7 @@ module_name()
 {
 	# Do we have "submodule.<something>.path = $1" defined in .gitmodules file?
 	re=$(printf '%s' "$1" | sed -e 's/[].[^$\\*]/\\&/g')
-	name=$( GIT_CONFIG=.gitmodules \
-		git config --get-regexp '^submodule\..*\.path$' |
+	name=$( git config -f .gitmodules --get-regexp '^submodule\..*\.path$' |
 		sed -n -e 's|^submodule\.\(.*\)\.path '"$re"'$|\1|p' )
        test -z "$name" &&
        die "No submodule mapping found in .gitmodules for path '$path'"
@@ -198,8 +197,8 @@ cmd_add()
 	git add "$path" ||
 	die "Failed to add submodule '$path'"
 
-	GIT_CONFIG=.gitmodules git config submodule."$path".path "$path" &&
-	GIT_CONFIG=.gitmodules git config submodule."$path".url "$repo" &&
+	git config -f .gitmodules submodule."$path".path "$path" &&
+	git config -f .gitmodules submodule."$path".url "$repo" &&
 	git add .gitmodules ||
 	die "Failed to register submodule '$path'"
 }
@@ -240,7 +239,7 @@ cmd_init()
 		url=$(git config submodule."$name".url)
 		test -z "$url" || continue
 
-		url=$(GIT_CONFIG=.gitmodules git config submodule."$name".url)
+		url=$(git config -f .gitmodules submodule."$name".url)
 		test -z "$url" &&
 		die "No url found for submodule path '$path' in .gitmodules"
 
-- 
1.5.4.2

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] Use '-f' option to point to the .gitmodules file
  2008-05-15  7:42 [PATCH] Use '-f' option to point to the .gitmodules file imyousuf
@ 2008-05-15  8:56 ` Johannes Schindelin
  2008-05-20  3:12   ` Imran M Yousuf
  0 siblings, 1 reply; 3+ messages in thread
From: Johannes Schindelin @ 2008-05-15  8:56 UTC (permalink / raw)
  To: imyousuf; +Cc: git, gitster, Imran M Yousuf

Hi,

On Thu, 15 May 2008, imyousuf@gmail.com wrote:

> From: Imran M Yousuf <imyousuf@smartitengineering.com>
> 
> 'git config' has a '-f' option that takes the file to parse.
> Using it rather than the environment variable seems more logical
> and simplified.

Definitely looks more readable.

Ciao,
Dscho

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] Use '-f' option to point to the .gitmodules file
  2008-05-15  8:56 ` Johannes Schindelin
@ 2008-05-20  3:12   ` Imran M Yousuf
  0 siblings, 0 replies; 3+ messages in thread
From: Imran M Yousuf @ 2008-05-20  3:12 UTC (permalink / raw)
  To: gitster; +Cc: git, Imran M Yousuf

Thanks for accepting the patch :).

Best regards,

Imran
On Thu, May 15, 2008 at 2:56 PM, Johannes Schindelin
<Johannes.Schindelin@gmx.de> wrote:
> Hi,
>
> On Thu, 15 May 2008, imyousuf@gmail.com wrote:
>
>> From: Imran M Yousuf <imyousuf@smartitengineering.com>
>>
>> 'git config' has a '-f' option that takes the file to parse.
>> Using it rather than the environment variable seems more logical
>> and simplified.
>
> Definitely looks more readable.
>
> Ciao,
> Dscho
>



-- 
Imran M Yousuf

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2008-05-20  3:12 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-15  7:42 [PATCH] Use '-f' option to point to the .gitmodules file imyousuf
2008-05-15  8:56 ` Johannes Schindelin
2008-05-20  3:12   ` Imran M Yousuf

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).