add weak git integration

This commit is contained in:
2025-11-22 10:22:26 -05:00
parent fc2e477665
commit 54db089b71
9 changed files with 58 additions and 10 deletions

View File

@@ -23,8 +23,9 @@ int makeshell(char *src, int complexity) {
if (complexity == SINGLE)
single_init(src);
else if (complexity == FULL)
else if (complexity == FULL) {
full_project_init_and_cd(src);
}
else
die("invalid state! shell.c:%d", __LINE__);