From c2fb2573be87098676007e977c62caca88147834 Mon Sep 17 00:00:00 2001 From: James Patrick Date: Fri, 9 Aug 2024 11:13:41 -0400 Subject: [PATCH] We are thankfully no longer using svn --- zsh/environment/host/wok/zshrc | 42 ---------------------------------- 1 file changed, 42 deletions(-) diff --git a/zsh/environment/host/wok/zshrc b/zsh/environment/host/wok/zshrc index 9497f8e..0888eb4 100644 --- a/zsh/environment/host/wok/zshrc +++ b/zsh/environment/host/wok/zshrc @@ -12,46 +12,4 @@ switch () { popd } -svn_stash() { - if [ ! -d .svn ]; then - echo "Not at ROOT of SVN directory." - return - fi - - if [ ! -d .svn/stash ]; then - echo "creating .svn/stash directory" - mkdir -p .svn/stash/ - fi - - if [ -z "$1" ]; then - echo "Missing stash name argument" - return - fi - - stash_file="$PWD/.svn/stash/${@[-1]}" - if [[ "$1" == "pop" ]] ; then - if [ ! -f $stash_file ]; then - echo "Cannot find stash: $stash_file" - return - fi - patch -p0 < $stash_file - elif [[ "$1" == "list" ]] ; then - ls -1 .svn/stash/ - else - if [ -f $stash_file ]; then - echo "stash already exist with that name: $stash_file" - return - fi - echo "stash file can be found at $stash_file" - svn diff > $stash_file && svn revert -R . - fi -} - eval "$(rbenv init -)" - - -if [ -f ~/.config/op/plugins.sh ] ; then -# source ~/.config/op/plugins.sh -else - echo "Could not find op plugin. Has this been loaded?" -fi