commit 486dd8e0b25f13d1dce98a3f8505890411f79193 Author: Jeff Carr Date: Mon Jan 8 05:00:46 2024 -0600 new stuff Signed-off-by: Jeff Carr diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..2215872 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +all: + +redomod: + rm -f go.* + go mod init + go mod tidy + +filter-branch: + # git filter-branch --index-filter "git rm --cached --ignore-unmatch path_to_unwanted_file" --prune-empty --tag-name-filter cat -- --all + git filter-branch --tree-filter 'rm plugin.go' HEAD + +git filter-branch --subdirectory-filter foodir -- --all