1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# ================================================================
# Git Submodules configuration for Librius
# ================================================================
# This file defines the external Git repositories ("submodules")
# that are linked inside this project.
#
# Submodules are used to include external or private components
# (e.g. developer scripts, shared configs, documentation assets)
# without merging their contents directly into the main repo.
# ================================================================
# ------------------------------------------------
# Private developer utilities (not public)
# ------------------------------------------------
# Path: tools_private/
# Repository: github.com/umpire274/librius-dev-scripts.git
# Access: private (owner/collaborators only)
# ------------------------------------------------
# ================================================================
# Tips:
# - Clone with submodules:
# git clone --recurse-submodules git@github.com:umpire274/librius.git
#
# - If you already cloned:
# git submodule update --init --recursive
#
# - Update the submodule (inside main repo):
# cd tools_private && git pull origin main && cd ..
# git add tools_private
# git commit -m "Update private scripts submodule"
#
# - If you move the submodule folder:
# git mv old_path new_path
# and update the 'path' entry here accordingly.
# ================================================================