MCPcopy Index your code
hub / github.com/initialcommit-com/git-sim / config

Function config

src/git_sim/commands.py:124–139  ·  view source on GitHub ↗
(
    l: bool = typer.Option(
        False,
        "-l",
        "--list",
        help="List existing local repo config settings",
    ),
    settings: List[str] = typer.Argument(
        default=None,
        help="The names and values of one or more config settings to set",
    ),
)

Source from the content-addressed store, hash-verified

122
123
124def config(
125 l: bool = typer.Option(
126 False,
127 "-l",
128 "--list",
129 help="List existing local repo config settings",
130 ),
131 settings: List[str] = typer.Argument(
132 default=None,
133 help="The names and values of one or more config settings to set",
134 ),
135):
136 from git_sim.config import Config
137
138 scene = Config(l=l, settings=settings)
139 handle_animations(scene=scene)
140
141
142def fetch(

Callers

nothing calls this directly

Calls 2

ConfigClass · 0.90
handle_animationsFunction · 0.70

Tested by

no test coverage detected