gitspace

Git-based workspaces


Getting Started

  1. cargo install gitspace
  2. gitspace init
  3. Update config
  4. gitspace sync

Commands

Commands::Initialize

| Name | Description | | :--- | :--------------------------------------------- | | init | Create a new gitspace config | | sync | Clone repos, update symlinks, update gitignore |

Commands::Maintain

| Name | Description | | :--------------- | :------------------------------------------------------------ | | alias | generate aliases for gitspace repos, defaults to alias --zsh | | alias --bash | generate bash / zsh compatible aliases | | alias --nushell | generate nushell aliases | | ignore | Update (or create) new gitignore file based on cloned repos | | clean | Without argument, defaults to clean --all | | clean --all | removes everything besides gitignore and your gitspace config | | clean --symlinks | Remove all gitspace generated symlinks | | clean --repos | Remove all cloned repos (ie. .repos directory) | | fetch | Fetch all updates from master for local repos | | version | print gitspace version |


Space

Git


Dependencies

| Name | Link | Description | | :-------------- | :--------------------------------------------------------------------- | :----------------------------------------------------------- | | git2 | git2 | Clone git repos | | serde | serde | Serializing/deserializing (for payloads and repogen config ) | | symlink | symlink | Cross-platform symlinks | | reqwest-graphql | reqwest-graphql | Querying Github's GraphQL API | | clap | clap | CLI argument parser |


Prior Art

Origin of this project started when I wrote repogen. While this is still used internally, it's outdated & lacks features. We ended up using submodules last year and remembered some of the pain associated with an otherwise convenient feature. Ultimately wanted something that would allow a team of devs to have a consistent directory structure without being beholden to the all-mighty monolith

There are number of notable options in the monolith/package management space, ranging from pure workspaces to interactive build systems

Few notable examples:


Objectives

Objectives::MVP

Objectives::Post-MVP