Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

2
  • but these are different git repositories, even if i clone them, i will end up with n number of repositories and will need to run git pull --rebase on each one of them. I am thinking of using stow, chezmoi or barerepo after reading more about them. How can i have all these repo in single directory, so when i do git pull - every n repositories get pulled and rebased? Commented Oct 12, 2023 at 3:49
  • 1
    @Phoenix you can put them all inside one repo as submodules, then use git submodule update --remote to update them all in one go. Commented Oct 12, 2023 at 3:58