From: Frank Terbeck Date: Tue, 29 Nov 2011 13:33:41 +0000 (+0100) Subject: zshrc: Remove cvs* functions X-Git-Tag: v0.5.0~42 X-Git-Url: http://git.grml.org/?p=grml-etc-core.git;a=commitdiff_plain;h=4338c8c562c312f8129e7f22fc7c3500fbc4989c zshrc: Remove cvs* functions Signed-off-by: Frank Terbeck --- diff --git a/doc/grmlzshrc.t2t b/doc/grmlzshrc.t2t index df3946c..c5a5ad0 100644 --- a/doc/grmlzshrc.t2t +++ b/doc/grmlzshrc.t2t @@ -509,25 +509,6 @@ grml systems with autologin. Changes current directory to the one supplied by argument and lists the files in it, including file names starting with ".". -: **cvsa()** -Adds and commits the given files using cvs(1). The commit message will be -'initial checkin'. - -: **cvsd()** -Shows a cvs diff of the arguments in $PAGER. - -: **cvsl()** -Shows the cvs log in $PAGER. - -: **cvsq()** -Runs a cvs update. - -: **cvsr()** -Generates a changelog using rcs2log and shows it in $PAGER. - -: **cvss()** -Shows cvs status of given files. - : **dchange()** Shows the changelog of given package in $PAGER. diff --git a/etc/zsh/zshrc b/etc/zsh/zshrc index b80a7e4..b4072a4 100644 --- a/etc/zsh/zshrc +++ b/etc/zsh/zshrc @@ -2661,36 +2661,6 @@ cl() { emulate -L zsh cd $1 && ls -a } -#f5# Cvs add -cvsa() { - emulate -L zsh - cvs add $* && cvs com -m 'initial checkin' $* -} -#f5# Cvs diff -cvsd() { - emulate -L zsh - cvs diff -N $* |& $PAGER -} -#f5# Cvs log -cvsl() { - emulate -L zsh - cvs log $* |& $PAGER -} -#f5# Cvs update -cvsq() { - emulate -L zsh - cvs -nq update -} -#f5# Rcs2log -cvsr() { - emulate -L zsh - rcs2log $* | $PAGER -} -#f5# Cvs status -cvss() { - emulate -L zsh - cvs status -v $* -} # smart cd function, allows switching to /etc when running 'cd /etc/fstab' cd() {