git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* git add on existing sub-repository
@ 2009-07-15 13:50 Stefan Näwe
  0 siblings, 0 replies; only message in thread
From: Stefan Näwe @ 2009-07-15 13:50 UTC (permalink / raw)
  To: git

I found a weirdness with git add and submodules. 
I did:
 - create 2 repos: subtest, mod1
 - cloned mod1 into subtest
 - in 'subtest': git add mod1

'mod1' gets added as a submodule, but no '.gitmodules' files is written.

Bug ? Feature ?

Thanks for any reply.

Stefan


P.S. Here's a 'script' log of what 
I did (git-make-initial simply creates a new repo with a single commit):

~/tmp$ git version
git version 1.6.3.3

~/tmp$ cat ~/bin/git-make-initial
#!/bin/sh
me=$(basename $0)
if [ ! -z "$1" ]; then
	dir=$1
	test -d $dir || mkdir $dir
else
	dir=.
fi
test -d $dir/.git && (echo "$me: '.git' exists; Not creating initial commit" ; 
exit -1)
test -d $dir/.git || (cd $dir ; git init ; test -f .gitignore || cp 
.git/info/exclude .gitignore ; git add . ; git ci -s -m"Initial commit created 
by $me")

~/tmp$ git-make-initial subtest
Initialized empty Git repository in /home/naewe/tmp/subtest/.git/
[master (root-commit) 8ab9920] Initial commit created by git-make-initial
 1 files changed, 6 insertions(+), 0 deletions(-)
 create mode 100644 .gitignore

~/tmp$ git-make-initial mod1
Initialized empty Git repository in /home/naewe/tmp/mod1/.git/
[master (root-commit) 3671274] Initial commit created by git-make-initial
 1 files changed, 6 insertions(+), 0 deletions(-)
 create mode 100644 .gitignore

~/tmp$ ls -la subtest mod1
mod1:
insgesamt 11
drwxr-xr-x  3 naewe naewe  104 2009-07-15 15:38 .
drwx------ 13 naewe naewe 6992 2009-07-15 15:38 ..
drwxr-xr-x  8 naewe naewe  328 2009-07-15 15:38 .git
-rw-r--r--  1 naewe naewe  240 2009-07-15 15:38 .gitignore

subtest:
insgesamt 11
drwxr-xr-x  3 naewe naewe  104 2009-07-15 15:38 .
drwx------ 13 naewe naewe 6992 2009-07-15 15:38 ..
drwxr-xr-x  8 naewe naewe  328 2009-07-15 15:38 .git
-rw-r--r--  1 naewe naewe  240 2009-07-15 15:38 .gitignore

~/tmp$ cd subtest
~/tmp/subtest$ git clone ~/tmp/mod1
Initialized empty Git repository in /home/naewe/tmp/subtest/mod1/.git/
~/tmp/subtest$ git add mod1
~/tmp/subtest$ git status
# On branch master
# Changes to be committed:
#   (use "git reset HEAD <file>..." to unstage)
#
#	new file:   mod1
#
# Modified submodules:
#
# * mod1 0000000...3671274 (1):
#   > Initial commit created by git-make-initial
#
~/tmp/subtest$ ls -a
.  ..  .git  .gitignore  mod1
~/tmp/subtest$

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2009-07-15 13:51 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-15 13:50 git add on existing sub-repository Stefan Näwe

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).