Что означает -PAd, когда я использую вместе с обновлением cvs?
Чтобы узнать, что делает какая-либо команда, используйте справочные страницы Unix / Linux / OS X:
человек резюме
Во всяком случае, прямо с тех страниц в разделе «Параметры обновления»:
-P
Prune empty directories. See see node `Removing directories' in the CVS
manual.
-A
Reset any sticky tags, dates, or -k options. See see node `Sticky tags'
in the CVS manual, for more information on sticky tags/dates.
-d
Create any directories that exist in the repository if they're missing
from the working directory. Normally, update acts only on directories
and files that were already enrolled in your working directory.
This is useful for updating directories that were created in the reposi-
tory since the initial checkout; but it has an unfortunate side effect.
If you deliberately avoided certain directories in the repository when
you created your working directory (either through use of a module name
or by listing explicitly the files and directories you wanted on the
command line), then updating with -d will create those directories,
which may not be what you want
По сути, он восстанавливает отмеченную ветку до последней версии.
-P удаляет пустые каталоги -A сбрасывает закрепленные теги -d создает каталоги, которые существуют в репозитории, но отсутствуют локально.