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 host
Connected to ws://mailbox.magic-wormhole.io:4001/v1
Hosting /home/meejah/src/gwm on git://localhost:9418/gwm
Ready for peers.
Press "return" to create invite:
Invite code: 4-quux-foo
Waiting for peer...
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 accept 4-quux-foo ~/src/gwm
Connected to ws://mailbox.magic-wormhole.io:4001/v1
Listening on port 9418
Repository available at:
git clone git://localhost/gwm
$ cd ~/src
$ git clone git://localhost/gwm
Meanwhile, I should see something like this on my side:
...
Press "return" to create invite:
Invite code: 4-quux-foo
Waiting for peer...connected.
Remote listening on port 9418
Peer 1 has cloned the repository.
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.
Note that this is a little different than GitHub and similar services. My friend is directly pushing to my repository; there is no "bare" repository (e.g. on the host side). Git doesn't like when you're both on the same branch in this situation.
To alleviate this, you may create your own git init --bare /tmp/foo repository, and run git withme host /tmp/foo to host it out of that instead.
You'd then also git remote add -f collab file:///tmp/foo (or similar) in your original local copy so you have a remote to push to / pull from.
This workflow is more like that of hosted services.
XXX: do we want to have an option to just do this for you? maybe that's the default?
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
TODO
- A
--read-onlyor similar option to disable push access by peers - better UX (e.g. let "host" invite more than one at once, show more details, etc)
git withme acceptside; doesn't do a lot currently (can basically just befowl) but symmetry and future expansion are nice- tie in Dilation feedback / updates UX through from fowl, for experimenting
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.4.0.tar.gz.
File metadata
- Download URL: git_withme-25.4.0.tar.gz
- Upload date:
- Size: 9.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 |
ef019d1d03f3261351183bd04e52898593dc48197eaa0378793397abe5950bd6
|
|
| MD5 |
a041ca1e247daaad3f5810c2eb56ad9f
|
|
| BLAKE2b-256 |
651137c12c63610c82be599a15cf45a1a0ac282e3061c350f8310917c94ca58d
|
File details
Details for the file git_withme-25.4.0-py3-none-any.whl.
File metadata
- Download URL: git_withme-25.4.0-py3-none-any.whl
- Upload date:
- Size: 10.8 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 |
b26237fc4ed824cff5009594b4b9ce8624d124f934879a0ee929617be63a8ec6
|
|
| MD5 |
d16a1a4bdb81776ddecd903cbb0cbd2a
|
|
| BLAKE2b-256 |
ee17108d590fe4693cc0ab0dfd3aa8857c4062e4775536d7c7b70faa56daacf1
|