Metadata-Version: 2.4
Name: cli-git
Version: 2.1.0
Summary: A modern Python CLI tool for Git operations
Author-email: Kang Hee Yong <cagojeiger@naver.com>
License-File: LICENSE
Keywords: cli,git,tool
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Version Control :: Git
Classifier: Topic :: Utilities
Requires-Python: >=3.11
Requires-Dist: jinja2>=3.1.0
Requires-Dist: tomlkit>=0.13.2
Requires-Dist: typer>=0.16.0
Description-Content-Type: text/markdown

# cli-git

현대적인 Git 작업을 위한 Python CLI 도구

## 설치

```bash
# pipx 설치 (권장)
pip install pipx
pipx ensurepath
pipx install cli-git

# 또는 소스에서 설치
git clone https://github.com/cagojeiger/cli-git.git
cd cli-git
pipx install -e . --force
```

## 사용법

```bash
# 초기 설정
gh auth login
cli-git init

# 프라이빗 미러 생성
cli-git private-mirror https://github.com/owner/repo

# 자동완성 설치
cli-git completion
```
