No description
Find a file
2021-10-26 12:49:56 -07:00
src maint: fix up default remote branch handling 2021-10-26 12:49:56 -07:00
.gitignore new: gwar 2021-06-30 19:20:36 -07:00
Cargo.lock maint: fix up default remote branch handling 2021-10-26 12:49:56 -07:00
Cargo.toml maint: fix up default remote branch handling 2021-10-26 12:49:56 -07:00
README.md maint: fix ver; add example 2021-07-01 10:26:12 -07: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" },
]

building and testing locally

sudo port install libiconv
sudo mkdir /opt/local/include/iconv
sudo cp /opt/local/include/iconv.h /opt/local/include/iconv/
# building
CFLAGS=-I/opt/local/include/iconv cargo build