What is a source repository? Write down the sequence of commands needed to import the files to be versioned (assume some file names). Place these files in the module myproject. Assume that the source repository is ~/cvsroot.
What will be an ideal response?
The sources that are mantained by CVS are kept in a directory called a source repository. It contains the RCS history (,v) file and also a directory callled CVSROOT which contain the administrative files.
$ cd $CVSAREA/myproject
$ cvs import -m "LUMS2/SERG project source" myproject GSAT start
N myproject/LSM.c
N myproject/DSM.c
N myproject/kernel.c
N myproject/ipv6.c
No conflicts created by this import
$
You might also like to view...
In SQL, the ____________ is used as a wildcard character, and can be used to represent any sequence of zero or more characters.
a. ^ symbol b. Wild operator c. % symbol d. * character
To copy every file in a given directory, reference file name __________.
a. ? b. * c. all d. none of the above
Create a shared library with a simple function that returns an integer value. Then write a program to call this function and print its return value. After compiling and running the program, make a change to the library function that will change the return value of the function. Now rebuild the library, and relink your already compiled .o file(s) with it and run the program again. Which return value do you see this time? What happens if you rename the function in the shared library and try to relink your program?
What will be an ideal response?
The_______method converts an ArrayList to a one-dimensional array.
a) to1DArray b) toOneDimensionalArray c) fromArrayList d) toArray