Hello,
I have a repository set up as: /xxx/src/master
The contents look like this (using 'ls'): CVSROOT Scripts ccvs
As user Joeshmoe, I execute the command 'cvs checkout ccvs' which
results in
cvs checkout:Updating ccvs
U file1
U file2
.
.
.
U filex
--and I'm free to "hack-away".
However, there are 2 problems.
1) After "Hacking" with any of the files checked-out in 'ccvs' I enter
the command, 'cvs commit ccvs'. It prompts me for a log of somesort
and I enter one. When I go into the repository to view the changes
that I've commited, the file exists 'UnModified'. What am I doing
wrong?
2) the Scripts DIR in the repository contains several 'tester' Shell
scripts. When I enter the command, "cvs checkout Scripts", I expect to
see:
cvs checkout:Updating Scripts
U file1
.
.
U filex
--However, all I get is "cvs checkout:Updating Scripts" and none of the
files that reside within the Scripts-directory is available to me.
What can be going wrong here?
Why did the files in 'ccvs' become available at checkout but NOT
'Script's'?
Why isn't 'commit' commiting the modifications?
Thank you in advance for you help.