<repository> is the URL of the new submodule’s origin repository. This may be either an absolute URL, or (if it begins with ./ or ../), the location relative to the superproject’s default remote repository (Please note that to specify a repositoryfoo.gitwhich is located right next ...
realrepo=$(git submodule--helper resolve-relative-url "$repo") || exit ;; *:*|/*) # absolute url realrepo=$repo ;; *) die "$(eval_gettext "repo URL: '\$repo' must be absolute or begin with ./|../")"
<repository> is the URL of the new submodule’s origin repository. This may be either an absolute URL, or (if it begins with ./ or ../), the location relative to the superproject’s origin repository (Please note that to specify a repositoryfoo.gitwhich is located right next to a su...
git config submodule."$sm_name".url "$realrepo" git add $force "$sm_path" || die "$(eval_gettext "Failed to add submodule '\$sm_path'")" git config -f .gitmodules submodule."$sm_name".path "$sm_path" && git config -f .gitmodules submodule."$sm_name".url "$repo" &&...
Summary I use git-submodules in a few projects (self-hosted Gitlab EE). The project URLs are relative to the current project. This...
Install under a relative URL Cloud providers Azure Google Cloud Platform (GCP) Amazon Web Services (AWS) Offline GitLab Offline GitLab installation Reference architectures Up to 20 RPS or 1,000 users Tutorial: Install and secure a single node GitLab instance Up to 40 RPS or 2...
> git submodule foreach --recursive git reset --hard 2023-08-04 02:17:13,367 DEBUG: Directory: build/io.chaldeaprjkt.boorusphere 2023-08-04 02:17:13,367 DEBUG: > git reset --hard 2023-08-04 02:17:13,573 DEBUG: Directory: build/io.chaldeaprjkt.boorusphere 2023-08-04 02:17:13,...
git_submodules_update_repos.sh - updates submodules (pulls and commits latest upstream github repo submodules) - used to cascade submodule updates throughout all my repos git_askpass.sh - credential helper script to use environment variables for git authentication markdown_generate_index.sh - gene...
$ git submodule update --init --recursive Remove a submodule Creating a submodule is pretty straight-forward, but deleting them less so. The commands you need are: $ git submodule deinit submodulename $ git rm submodulename $ git rm --cached submodulename $ rm -rf .git/modules/submodulenam...
<repository> is the URL of the new submodule's origin repository. This may be either an absolute URL, or (if it begins with ./ or ../), the location relative to the superproject's origin repository (Please note that to specify a repository foo.git which is located right next to a ...