programs: sane-git-init: remove (unused)

This commit is contained in:
Colin 2024-02-19 16:53:59 +00:00
parent c16c9dfe0b
commit 9373864b60
3 changed files with 0 additions and 21 deletions

View File

@ -20,7 +20,6 @@ in
"sane-scripts.dev" = declPackageSet [
"sane-scripts.clone"
"sane-scripts.dev-cargo-loop"
"sane-scripts.git-init"
];
"sane-scripts.cli" = declPackageSet [
"sane-scripts.deadlines"

View File

@ -86,11 +86,6 @@ let
src = ./src;
pkgs = [ "findutils" ];
};
git-init = static-nix-shell.mkBash {
pname = "sane-git-init";
src = ./src;
pkgs = [ "git" ];
};
ip-check = static-nix-shell.mkPython3Bin {
pname = "sane-ip-check";
src = ./src;

View File

@ -1,15 +0,0 @@
#!/usr/bin/env nix-shell
#!nix-shell -i bash -p git
set -x
# initialize a repository with each of my machines configured as remotes.
# it's assumed each machine stores the repo at the same fs path
path=$PWD
git init
git remote add desko "colin@desko:$path"
git remote add lappy "colin@lappy:$path"
git remote add moby "colin@moby:$path"
git remote add servo "colin@servo:$path"