mirror of
https://github.com/semantica-agi/semantica.git
synced 2026-09-10 04:00:35 +00:00
feat: enhance kg module with tests, conflict resolution placeholders, and doc updates
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
import subprocess
|
||||
import os
|
||||
|
||||
def run_git_cmd(cmd):
|
||||
print(f"--- Running: {cmd} ---")
|
||||
try:
|
||||
result = subprocess.run(cmd, shell=True, check=False, capture_output=True, text=True)
|
||||
print("STDOUT:", result.stdout)
|
||||
print("STDERR:", result.stderr)
|
||||
except Exception as e:
|
||||
print(f"Error running {cmd}: {e}")
|
||||
|
||||
print(f"CWD: {os.getcwd()}")
|
||||
run_git_cmd("git status")
|
||||
run_git_cmd("git branch -v")
|
||||
run_git_cmd("git remote -v")
|
||||
run_git_cmd("git push origin knowledge-engineering")
|
||||
Reference in New Issue
Block a user