Centralisation des tutos
Ajouter un nouveau submodule
git submodule add [submodule-repository-url] [path]
git submodule add https://... ./path
Initialiser les submodules du repo
git submodule init
Initialiser un submodule dans le repo
git submodule init [path]
Mettre à jour le repo
git submodule update
Récupérer les commits distants du repo:
git pull origin main
Récupérer les commits distants de tous les submodule:
git submodule foreach 'git pull origin main'
Ne pas oublier de push les modifications sur le repo centraliser
git push origin main
- Submodule: https://phoenixnap.com/kb/git-submodule