git-copilot-commit 0.4.3__tar.gz → 0.4.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {git_copilot_commit-0.4.3 → git_copilot_commit-0.4.4}/PKG-INFO +1 -1
- {git_copilot_commit-0.4.3 → git_copilot_commit-0.4.4}/src/git_copilot_commit/github_copilot.py +1 -12
- {git_copilot_commit-0.4.3 → git_copilot_commit-0.4.4}/.github/workflows/ci.yml +0 -0
- {git_copilot_commit-0.4.3 → git_copilot_commit-0.4.4}/.gitignore +0 -0
- {git_copilot_commit-0.4.3 → git_copilot_commit-0.4.4}/.justfile +0 -0
- {git_copilot_commit-0.4.3 → git_copilot_commit-0.4.4}/.python-version +0 -0
- {git_copilot_commit-0.4.3 → git_copilot_commit-0.4.4}/LICENSE +0 -0
- {git_copilot_commit-0.4.3 → git_copilot_commit-0.4.4}/README.md +0 -0
- {git_copilot_commit-0.4.3 → git_copilot_commit-0.4.4}/pyproject.toml +0 -0
- {git_copilot_commit-0.4.3 → git_copilot_commit-0.4.4}/src/git_copilot_commit/__init__.py +0 -0
- {git_copilot_commit-0.4.3 → git_copilot_commit-0.4.4}/src/git_copilot_commit/cli.py +0 -0
- {git_copilot_commit-0.4.3 → git_copilot_commit-0.4.4}/src/git_copilot_commit/git.py +0 -0
- {git_copilot_commit-0.4.3 → git_copilot_commit-0.4.4}/src/git_copilot_commit/prompts/commit-message-generator-prompt.md +0 -0
- {git_copilot_commit-0.4.3 → git_copilot_commit-0.4.4}/src/git_copilot_commit/py.typed +0 -0
- {git_copilot_commit-0.4.3 → git_copilot_commit-0.4.4}/src/git_copilot_commit/settings.py +0 -0
- {git_copilot_commit-0.4.3 → git_copilot_commit-0.4.4}/src/git_copilot_commit/version.py +0 -0
- {git_copilot_commit-0.4.3 → git_copilot_commit-0.4.4}/uv.lock +0 -0
- {git_copilot_commit-0.4.3 → git_copilot_commit-0.4.4}/vhs/demo.vhs +0 -0
{git_copilot_commit-0.4.3 → git_copilot_commit-0.4.4}/src/git_copilot_commit/github_copilot.py
RENAMED
|
@@ -1101,18 +1101,7 @@ def print_login_summary(
|
|
|
1101
1101
|
console.print(Panel.fit(table, title="Login Summary"))
|
|
1102
1102
|
|
|
1103
1103
|
|
|
1104
|
-
def login(
|
|
1105
|
-
enterprise_domain: str | None = typer.Option(
|
|
1106
|
-
None,
|
|
1107
|
-
"--enterprise-domain",
|
|
1108
|
-
help="GitHub Enterprise hostname. Omit for github.com.",
|
|
1109
|
-
),
|
|
1110
|
-
force: bool = typer.Option(
|
|
1111
|
-
False,
|
|
1112
|
-
"--force",
|
|
1113
|
-
help="Replace any cached Copilot credentials without prompting.",
|
|
1114
|
-
),
|
|
1115
|
-
) -> None:
|
|
1104
|
+
def login(enterprise_domain: str | None = None, force: bool = False) -> None:
|
|
1116
1105
|
"""Authenticate with GitHub and cache Copilot credentials locally."""
|
|
1117
1106
|
normalized_domain = normalize_domain(enterprise_domain)
|
|
1118
1107
|
if enterprise_domain and not normalized_domain:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|