“Git -Submodul” Code-Antworten

Git laden alle Submodule

git submodule update --init --recursive
konard

Git -Klon rekursiv

# When cloning repo ...
git clone --recurse-submodules -j8 https://git.example.com/repo.git

# ... or for existing already cloned repo
git submodule update --init --recursive
Stupid Seahorse

Git -Klon -Submodule

# This will clone a repo with all submodules included
git clone --recurse-submodules
AskJeeves

Git -Update -Submodule rekursiv

git submodule update --init --recursive
Proud Polecat

Git -Klon -Submodul

git clone --recurse-submodules
Colorful Cardinal

Git -Submodul

git submodule sync: Updates the description of submodules cached by git in .git/modules
git submodule update --init --recursive --remote for Updates the working copy
[submodule "api"]
    path = api
    url = https://github.com/<another_repo>/api.git
    branch = main
cadot.eu

Ähnliche Antworten wie “Git -Submodul”

Fragen ähnlich wie “Git -Submodul”

Weitere verwandte Antworten zu “Git -Submodul” auf Shell/Bash

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen