hypr.linux-x64 0.3.1

dotnet add package hypr.linux-x64 --version 0.3.1
                    
NuGet\Install-Package hypr.linux-x64 -Version 0.3.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="hypr.linux-x64" Version="0.3.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="hypr.linux-x64" Version="0.3.1" />
                    
Directory.Packages.props
<PackageReference Include="hypr.linux-x64" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add hypr.linux-x64 --version 0.3.1
                    
#r "nuget: hypr.linux-x64, 0.3.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package hypr.linux-x64@0.3.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=hypr.linux-x64&version=0.3.1
                    
Install as a Cake Addin
#tool nuget:?package=hypr.linux-x64&version=0.3.1
                    
Install as a Cake Tool

hypr 🚀

A better git worktree experience

hypr is a modern, highly customizable CLI tool that supercharges your git worktree workflow. It makes creating, switching, and managing worktrees effortless, with first-class terminal integration and powerful automation hooks.

Why hypr?

Git worktrees are amazing for parallel development, but managing them manually is tedious. hypr solves this:

  • ⚡ Instant Context Switching: hypr feature-branch handles everything—fetching, creating the worktree, and opening it.
  • 🖥️ Terminal Integrated: Automatically opens your worktree in a new tab or window (supports iTerm2, Tmux, Ghostty, VS Code, and more).
  • ✨ Interactive TUI: built-in interactive menu for selecting and managing worktrees.
  • 🧹 Smart Cleanup: hypr cleanup intelligently finds and deletes worktrees for merged or closed branches (including GitHub integration).
  • 🔗 Lifecycle Hooks: Run scripts automatically on create, switch, or cleanup (e.g., bun install or copying .env files).

📦 Installation

Support for various package managers is available:

  • Homebrew (macOS): brew install hypr
  • Winget (Windows): winget install hypr
  • Scoop (Windows): scoop install hypr
  • AUR (Arch Linux): yay -S hypr

.NET Tool (Alternative)

dotnet tool install --global hypr

On .NET 10 SDK-based installs, supported platforms automatically receive a self-contained tool package. Other platforms fall back to the framework-dependent any package.

⚡ Usage

Create & Switch

Create a new worktree for a feature branch and open it instantly in a new tab:

# Creates a worktree for 'my-feature' and opens it
hypr my-feature

Cleanup

Clean up old worktrees. hypr checks if branches are merged or if their PRs are closed.

hypr cleanup

🛠️ Configuration

hypr is highly configurable via a global or project-local hypr.json file.

Example hypr.json:

{
  "worktree": {
    "directoryPattern": "../{repo_name}-worktrees/{branch}"
  },
  "terminal": {
    "mode": "tab"
  },
  "scripts": {
    "sessionInit": "bun install && cp ../main/.env ."
  }
}

See example_config.json for a comprehensive list of options.

🏗️ Development

Prerequisites:

  • .NET 10.0 SDK

Build & Run:

# Setup dependencies
./setup.sh

# Build
dotnet build

# Run tests
dotnet test
There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.3.1 35 4/10/2026