No description
Find a file
Matthew Ryan Dillon 691e20b07e feat: support _not_ renaming an origin
mostly this just has to do with workplace-related workflows and tools assuming
that `origin` exists as a remote alias, which is unfortunate but such is life.
2024-10-12 09:56:04 -04:00
src feat: support _not_ renaming an origin 2024-10-12 09:56:04 -04:00
.gitignore new: gwar 2021-06-30 19:20:36 -07:00
Cargo.lock bump git2 2023-09-03 22:45:47 -04:00
Cargo.toml bump git2 2023-09-03 22:45:47 -04:00
README.md maint: remove iconv workaround and vendor openssl 2023-05-14 17:00:18 -04:00

gwar: git workspaces and repositories

this is not meant for general consumption!

i like to be able to quickly bootstrap my git projects when i move into a fresh os install - having a single-file binary to make that happen seemed really nice, plus, i was looking for an excuse to play with rust a bit. you have been warned.

example config

[[workspace]]
path = "$HOME/projects"
ssh_key_path = "$HOME/.ssh/id_rsa"
origin.base_addr = "ssh://git@pingo.thermokar.st"
origin.name = "pingo"
repos = [
  "gpx-web-utils",
  "gwar",
  "zettel",
]
remotes = [
  { name = "thermokarst", base_addr = "ssh://git@github.com/thermokarst" },
]