Crates.io | stall |
lib.rs | stall |
version | 0.2.0 |
source | src |
created_at | 2020-07-01 19:42:35.131397 |
updated_at | 2022-02-25 22:52:19.438061 |
description | A simple local configuration management utility |
homepage | https://github.com/solarretrace/stall-rs |
repository | https://github.com/solarretrace/stall-rs |
max_upload_size | |
id | 260385 |
size | 127,894 |
stall
-- A simple file gathering repositoryStall is a command line utility for managing configuration data within a directory.
Running stall init
in a directory will create a .stall
file in that directory which tracks any files added, removed, or moved by stall add
, stall rm
, or stall mv
.
Tracked files (also 'stalled files') can be easily copied to and from their original locations via the stall distribute
and stall collect
commands, respectively. These commands will ensure that copies will only occur if an older version of the file is being overwritten. Use stall status
to display the status of all files tracked.
Stall can make it easy to group, edit, backup, and apply version control to specific files dispersed among many different directories.
There are currently two install options:
Install cargo and run cargo install stall
.
Build stall
from source. Clone this repository, install Rust, run Cargo build --release
, and move the compiled binary into your $PATH
somewhere.
USAGE:
stall <SUBCOMMAND>
OPTIONS:
-h, --help Print help information
-V, --version Print version information
SUBCOMMANDS:
add Add files to a stall
collect Copy files into the stall directory from their remote locations
distribute Copi files from the stall directory to their remote locations
help Print this message or the help of the given subcommand(s)
init Intitialize a stall directory by generating a stall file
mv Rename a file in a stall. Future collect/distribute actions will use the new
name
rm Remove files from a stall
status Print the status of stalled files
Stall is licenced with the MIT license or the Apache version 2.0 license, at your option.