Metadata-Version: 2.5
Name: git-worktree-env
Version: 0.2.0
Summary: Transition package for the renamed worktree-env project
Project-URL: Homepage, https://github.com/archcst/worktree-env
Project-URL: Repository, https://github.com/archcst/worktree-env
Project-URL: Issues, https://github.com/archcst/worktree-env/issues
Author: Shitong Chen
License-Expression: MIT
Classifier: Development Status :: 7 - Inactive
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9
Requires-Dist: worktree-env>=0.2.0
Description-Content-Type: text/markdown

# `git-worktree-env` has moved

> **This package has been renamed to [`worktree-env`](https://pypi.org/project/worktree-env/).**

This is the final transition release of `git-worktree-env`. It installs the renamed
package so existing users can continue to run `wte`, but future releases will only be
published as `worktree-env`.

## Migrate an existing installation

For an installation managed by `uv`:

```bash
uv tool uninstall git-worktree-env
uv tool install worktree-env
wte init
# If you previously enabled the optional Monitor:
wte monitor enable
```

For an installation managed by `pipx`:

```bash
pipx uninstall git-worktree-env
pipx install worktree-env
wte init
# If you previously enabled the optional Monitor:
wte monitor enable
```

For an installation managed by `pip`:

```bash
python -m pip uninstall -y git-worktree-env
python -m pip install --upgrade --force-reinstall worktree-env
wte init
# If you previously enabled the optional Monitor:
wte monitor enable
```

Running `wte init` refreshes the Git hook's absolute executable path. The `wte`
command, the `git_worktree_env` Python import, and all existing configuration under
`~/.config/wte/` remain compatible.
