git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* add/init all git submodules that are referenced in .gitmodules
@ 2021-10-05 23:52 Alexander Mills
  2021-10-06 19:28 ` Jeff King
  0 siblings, 1 reply; 2+ messages in thread
From: Alexander Mills @ 2021-10-05 23:52 UTC (permalink / raw)
  To: git

I am looking for this feature:

https://stackoverflow.com/a/69458406/1223975

it is really confusing as to why it doesn't exist

-- 
Alexander D. Mills
New cell phone # (415)730-1805
linkedin.com/in/alexanderdmills

Sender notified by
Mailtrack 10/05/21, 04:51:40 PM
Remove

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

* Re: add/init all git submodules that are referenced in .gitmodules
  2021-10-05 23:52 add/init all git submodules that are referenced in .gitmodules Alexander Mills
@ 2021-10-06 19:28 ` Jeff King
  0 siblings, 0 replies; 2+ messages in thread
From: Jeff King @ 2021-10-06 19:28 UTC (permalink / raw)
  To: Alexander Mills; +Cc: git

On Tue, Oct 05, 2021 at 04:52:00PM -0700, Alexander Mills wrote:

> I am looking for this feature:
> 
> https://stackoverflow.com/a/69458406/1223975
> 
> it is really confusing as to why it doesn't exist

I'm not sure I understand what is being asked for.

If you just want to initialize and populate all of the modules in
.gitmodules (which is what I thought your subject line was asking for),
then:

  git submodule update --init

will do that (though of course if you are cloning anyway, you can just
say "--recurse-submodules).

But reading the original SO question, it is about finding repositories
in the current directory that _aren't_ submodules, and then adding them.
But those ones wouldn't be referenced in .gitmodules.

For that problem, no, I don't think there's an easy command, and you
have to dig for them (though "git ls-files -o --exclude-standard" is
perhaps a good way to locate them). But it's also not something I'd
expect to be a very common operation, which is why there's not an
existing command to do it.

-Peff

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

end of thread, other threads:[~2021-10-06 19:28 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-05 23:52 add/init all git submodules that are referenced in .gitmodules Alexander Mills
2021-10-06 19:28 ` Jeff King

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

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 read-only IMAP folder(s) and NNTP newsgroup(s).