From 87e223a71219f4ac7c3708ecc8c73537d708d83f Mon Sep 17 00:00:00 2001 From: u1 Date: Wed, 6 Nov 2024 10:26:59 +0000 Subject: [PATCH] add sgit.py --- sgit.py | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 sgit.py diff --git a/sgit.py b/sgit.py new file mode 100644 index 0000000..68c18eb --- /dev/null +++ b/sgit.py @@ -0,0 +1,39 @@ +import os +import subprocess +import configparser + +def initialize_repo(gitmodules_path=".gitmodules"): + # Sprawdź, czy istnieje katalog .git, jeśli nie, wykonaj 'git init' + if not os.path.exists(".git"): + subprocess.run(["git", "init"], check=True) + print("Initialized empty Git repository.") + + # Wczytaj konfigurację z pliku .gitmodules + config = configparser.ConfigParser() + config.read(gitmodules_path) + + # Przejdź przez każdy submoduł i skonfiguruj go + for section in config.sections(): + submodule_name = section.split('"')[1] + path = config[section]['path'] + url = config[section].get('url') + branch = config[section].get('branch') + + if url and branch: + # Dodaj submoduł + subprocess.run(["git", "submodule", "add", "-b", branch, url, path], check=True) + print(f"Added submodule '{submodule_name}' at '{path}' with URL '{url}' and branch '{branch}'.") + + # Synchronizuj i inicjalizuj submoduły + subprocess.run(["git", "submodule", "update", "--init", "--recursive", "--force"], check=True) + print("Submodules initialized and updated.") + + # Dodaj .gitmodules i zrób commit + subprocess.run(["git", "add", gitmodules_path], check=True) + subprocess.run(["git", "commit", "-m", "Initialize repository with submodules"], check=True) + print("Committed .gitmodules file.") + +# Uruchom funkcję inicjalizującą repozytorium i submoduły +initialize_repo() + +