MCPcopy Create free account
hub / github.com/Samsung/UTopia / config

Method config

helper/git.py:54–58  ·  view source on GitHub ↗
(self, name: str, value: str = None)

Source from the content-addressed store, hash-verified

52 self.execute(cmd)
53
54 def config(self, name: str, value: str = None) -> str:
55 cmd = ["git", "config", name]
56 if value:
57 cmd.append(value)
58 return self.execute(cmd)
59
60 def changed(self) -> List[Path]:
61 cmd = ["git", "show", "--name-status"]

Callers 1

__init__Method · 0.95

Calls 1

executeMethod · 0.95

Tested by

no test coverage detected