anything else in there. This is helpful sometimes for forcing
compilation of modified source files.<br>
</blockquote>
- <h4> </h4>
- <h3><a href="../rev_control/cvs_fix.pl">cvs_fix.pl</a></h3>
- <blockquote>Wraps the cygwin cvs command for pcdos/win32.
- Any
-unfriendly backward slashes are flipped to be forward slashes.<br>
- </blockquote>
+
<h3> </h3>
<h3><a name="differ"></a><a
href="../text/differ.pl">differ.pl</a></h3>
define_yeti_alias cls='clear_colormap; clear'
define_yeti_alias copy='\cp -i -v '
define_yeti_alias cp='\cp -i -v '
-define_yeti_alias cvs='perl $FEISTY_MEOW_SCRIPTS/rev_control/cvs_fix.pl'
define_yeti_alias del='perl $FEISTY_MEOW_SCRIPTS/files/safedel.pl'
define_yeti_alias deltree='perl $FEISTY_MEOW_SCRIPTS/files/safedel.pl'
define_yeti_alias df='\df -mh'
pushd "$prune_dir"
echo cleaning git in directory $(pwd)
git fsck --full
+check_if_failed "git fsck"
git gc --prune=today --aggressive
+check_if_failed "git gc"
git repack
+check_if_failed "git repack"
popd
+++ /dev/null
-#!/usr/bin/perl
-
-###############################################################################
-# #
-# Name : cvs_fix #
-# Author : Chris Koeritz #
-# Rights : Copyright (C) 2001-$now by Author #
-# #
-# Purpose: #
-# #
-# Flips any win32 slashes into friendly forward slashes before running #
-# the cvs binary. #
-# #
-###############################################################################
-# This program is free software; you can redistribute it and/or modify it #
-# under the terms of the GNU General Public License as published by the Free #
-# Software Foundation; either version 2 of the License or (at your option) #
-# any later version. See: "http://www.gruntose.com/Info/GNU/GPL.html" for a #
-# version of the License. Please send any updates to "fred@gruntose.com". #
-###############################################################################
-
-#require "filename_helper.pl";
-
-$new_cmd="cvs";
-
-foreach $i (@ARGV) {
-# printf "$i\n";
- $i =~ s/[\/\\]*$//;
- $i =~ s/\\/\//g;
-# print " --> $i\n";
- if ($i =~ /^co$/) {
- # insert our modifiers here.
- $new_cmd = $new_cmd . " " . $i . " -P -kb ";
- } else {
- # normal addition of next parameter.
- $new_cmd = $new_cmd . " " . $i;
- }
-}
-
-#printf "new command is: \"$new_cmd\"\n";
-#printf "are the -P and -kb flags in there?\n";
-system("$new_cmd");
-
-1;
-