Actions:
|
2012-10-05 09:26 AEST by Glen Starrett - If I have a sandbox on a CS server with files "b.txt" and "B.txt", log cannot
distinguish between them.
C:\test\q1>echo b > b.txt
C:\test\q1>echo B > B.txt
C:\test\q1>cvs --utf8 --cvsflt add b.txt B.txt
cvsntsrv server: scheduling file `b.txt' for addition
cvsntsrv server: scheduling file `B.txt' for addition
cvsntsrv server: use 'cvsntsrv commit' to add these files permanently
C:\test\q1>cvs --utf8 --cvsflt ci -m "Adding B and b"
cvs commit: Examining .
? camelCase.txt
? a.txt
? HI.txt
RCS file: /myrepo/non2/B.txt,v
done
Checking in B.txt;
/myrepo/non2/B.txt,v <-- B.txt
initial revision: 1.1
done
RCS file: /myrepo/non2/b.txt,v
done
Checking in b.txt;
/myrepo/non2/b.txt,v <-- b.txt
initial revision: 1.1
done
C:\test\q1>echo slkdjflskdf >> B.txt
C:\test\q1>cvs --utf8 --cvsflt ci -m "change to B"
cvs commit: Examining .
? camelCase.txt
? a.txt
? HI.txt
Checking in B.txt;
/myrepo/non2/B.txt,v <-- B.txt
new revision: 1.2; previous revision: 1.1
done
C:\test\q1>cvs log B.txt
RCS file: /myrepo/non2/B.txt,v
Working file: B.txt
head: 1.2
branch:
locks: strict
access list:
symbolic names:
keyword substitution: kv
total revisions: 2; selected revisions: 2
description:
----------------------------
revision 1.2
date: 2012/10/04 22:16:19; author: Administrator; state: Exp; lines: +2 -0;
kopt: kv; commitid: d3c506e09a26651; username: Administrator; filename: B.txt
;
change to B
----------------------------
revision 1.1
date: 2012/10/04 22:15:48; author: Administrator; state: Exp; kopt: kv; comm
itid: ab8506e0a86693a; username: Administrator; filename: B.txt;
Adding B and b
=============================================================================
C:\test\q1>cvs log b.txt
RCS file: /myrepo/non2/B.txt,v
Working file: B.txt
head: 1.2
branch:
locks: strict
access list:
symbolic names:
keyword substitution: kv
total revisions: 2; selected revisions: 2
description:
----------------------------
revision 1.2
date: 2012/10/04 22:16:19; author: Administrator; state: Exp; lines: +2 -0;
kopt: kv; commitid: d3c506e09a26651; username: Administrator; filename: B.txt
;
change to B
----------------------------
revision 1.1
date: 2012/10/04 22:15:48; author: Administrator; state: Exp; kopt: kv; comm
itid: ab8506e0a86693a; username: Administrator; filename: B.txt;
Adding B and b
=============================================================================
C:\test\q1> |