51

我已从 CVS 存储库中检出一个文件并对其进行了更改。

cvs up命令说文件被修改M

我需要删除我的更改。什么 cvs 命令可以为我做呢?

4

2 回答 2

73

你用

cvs update -C filename
于 2013-04-18T07:51:15.497 回答
1

这是一个令人惊讶的复杂操作。我们最终使用了这个脚本“cvsunedit”。我承认这看起来有点矫枉过正,但在 cvs 中有些事情比他们应该做的更难。

#!/bin/bash
# cvsunedit - revert a file's modifications while preserving its current version
set -e
if [ "$1" = "" ]
then
    exit 0
fi
for f in $*
do
    echo "$f"
    base="$(basename "$f")"
    dir="$(dirname "$f")"
    rev="$(perl -e "while(<>){m#/$base/([^/]+)/# && print \$1 . \"\n\";}" < "$dir/CVS/Entries")"
    if [ "$rev" = "" ]
    then
        echo "Cannot find revision for $f in $dir/CVS/Entries"
        exit 1
    fi

    executable=0
    [ -x "$f" ] && executable=1

    mv "$f" "$f.$$.rev$rev.bak" || rm -f "$f"

    set -x
    cvs up -p -r "$rev" "$f" > "$f"
    set +x
    chmod -w "$f"
    [ $executable -ne 0 ] && chmod aog+x "$f"
done
exit 0
于 2019-09-29T21:30:52.907 回答