Encrypted, peer-to-peer Git for two+ people.
Project description
Git With Me
I have a Git repository and I want to collaborate with others. We do not have a public server, and do not wish to use existing hosting services.
git withme provides a way for a single host to invite numerous peers with short, one-time secure codes.
The peers connect directly via Dilated Magic Wormhole channels, allowing collaborators to git clone git://localhost/<repo-name>.
Motivational Example
I have created a Git repository:
$ mkdir ~/src/gwm
$ cd ~/src/gmw
$ echo "Git With Me" > README
$ git add README
$ git commit -m "begin"
Now chatting with a friend, I invite them to collaborate. In its own shell, I run the hosting service; this will connect to the public Magic Wormhole mailbox server.
$ cd ~/src/gwm
$ git withme
Hosting /home/meejah/src/gwm (via bare repo /tmp/tmpx_y7q2iq/gitwithme_remote)
╭───────────────────────────────────────────────────────────────╮
│ Hosting: /home/mike/src/git-withme │
│ Git WithMe is now running. To push code to all peers, use: │
│ git push gitwithme │
│ ...and to receive code from a peer who has pushed, use: │
│ git pull gitwithme main │
│ The temporary bare repository we created will be deleted when │
│ this process is terminated. │
│ │
│ N -- create new peer │
│ Q -- quit, terminate all peers │
╰───────────────────────────────────────────────────────────────╯
Peers
┌────────────────────────────────────────────┐
│ Invite code: 4-quux-foo │
│ run "git-withme accept 4-quux-foo" to join │
└────────────────────────────────────────────┘
I now send the code 4-quux-foo to my friend.
On their computer, they run the "accept" command (with the secret code) to begin collaborating.
$ git withme --repo ~/src/gwm accept 4-quux-foo
welcome ws://relay.magic-wormhole.io:4000/v1
Peer has connected.
git:
git: Cloning into '~/src/gwm'...
git:
You can now use normal git commands in ~/src/gwm
"git pull": update from the host
"git push": push changes to the host
Meanwhile, I should see something like this on my side:
┌──────────────────────────────────────────────────────┐
│ Connected (for 58 seconds). 🙂 (last 58 seconds ago) │
└──────────────────────────────────────────────────────┘
As long as both of these shells -- the one on my computer, and the one on my friend's -- remain running they forward end-to-end encrypted traffic between our two computers. This means that my friend can pull (and push) code; we can use Git somewhat normally.
When the host terminates, the bare repository in $TMPDIR is removed.
One-Time Codes
Malicious actors (even the Mailbox server, if malicious or compromised) get a single guess at breaking the code; if they are wrong, the mailbox is destroyed and the legitimate recipient will notice (they get a "crowded" error). This gives us an identity-free, long-lived connection -- so long as we keep our shells running, we can put our laptops to sleep or otherwise move networks (note that if both sides are disconnected for more than 10 minutes, the connection will be terminated).
How to Install
git withme is a Git extension written in Python.
To "install" it, the git-withme script needs to be somewhere on your PATH (for git withme to work).
I recommend using a "virtualenv" or "venv" to install into, or you can try pip install --user git-withme if that works for your platform.
For a "venv":
$ python -m venv ~/gwm-venv
$ ~/gwm-venv/bin/pip install git+https://git.sr.ht/~meejah/git-withme
$ export ~/gwm-venv/bin:$PATH
$ git withme --help
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file git_withme-25.9.0.tar.gz.
File metadata
- Download URL: git_withme-25.9.0.tar.gz
- Upload date:
- Size: 12.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fc838f85409ee2719185b0e0e3fecaaf25cd529eb232b5a8cdceb1dfb2246a91
|
|
| MD5 |
74c4ec0a858b4dbc0b42521e3a1bd0f2
|
|
| BLAKE2b-256 |
e49e91d3c490ac17a5fdd1670296c895e6caeac047e211bc3ca183d9178b0058
|
File details
Details for the file git_withme-25.9.0-py3-none-any.whl.
File metadata
- Download URL: git_withme-25.9.0-py3-none-any.whl
- Upload date:
- Size: 11.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9a0555e71f59fa931b8fa0a7372e80dcd4041ec288e09399b816c282bd7540c3
|
|
| MD5 |
6ec89fd4c61726c55479b03f7ced7d3a
|
|
| BLAKE2b-256 |
9ef9767e7d1cae00a2e0d0e545dca357476a6ee2dbe910bc4978f8a6d2e6319c
|