Files
vim-ale/mutagen
AJ ONeal 23100394ac ref(installerconf): rename config keys and add full URL support
Renames:
- github_repo → github_releases (back-compat kept)
- github_source → github_sources (back-compat kept)
- gitea_repo → gitea_releases (back-compat kept)

New keys:
- gitea_sources, gitlab_releases, gitlab_sources

All keys now accept either owner/repo shorthand or full URLs:
- github_releases = sharkdp/bat
- github_releases = https://github.com/sharkdp/bat
- gitea_releases = https://git.rootprojects.org/root/pathman

Defaults: github → github.com, gitlab → gitlab.com.
Gitea has no default (self-hosted only).

Updated all 73 releases.conf files from github_repo to github_releases.
2026-03-11 11:51:43 -06:00
..
2026-03-08 19:38:49 -06:00

title, homepage, tagline
title homepage tagline
mutagen https://github.com/mutagen-io/mutagen mutagen: Remote development tool

To update or switch versions, run webi mutagen@stable (or @v2, @beta, etc).

Files

These are the files / directories that are created and/or modified with this install:

~/.config/envman/PATH.env
~/.local/bin/mutagen
~/.mutagen.yml

Cheat Sheet

Mutagen is a new kind of remote development tool that enables your existing local tools to work with code in remote environments like cloud servers and containers. It does this by providing high-performance real-time file synchronization and flexible network forwarding.

Creating sessions

Create a synchronization session named "web-app-code" between the local path ~/project and an SSH-accessible endpoint.

mutagen sync create --name=web-app-code ~/project user@example.org:~/project

OR Create a forwarding session named "web-app" between port 8080 on localhost and port 1313 inside a Docker container.

mutagen forward create --name=web-app tcp:localhost:8080 docker://devcontainer:tcp:localhost:1313

Listing sessions

mutagen sync list

OR

mutagen forward list

Monitoring a session

mutagen sync monitor web-app-code

OR

mutagen forward monitor web-app

Pausing/resuming sessions

mutagen sync pause web-app-code

OR

mutagen forward pause web-app

To resume replace pause with resume in the above commands

Resetting session

mutagen sync reset web-app-code

Terminating session

mutagen sync terminate web-app-code

OR

mutagen forward terminate web-app

For general help

mutagen --help

For specific command help

mutagen <command> --help