How can we ignore certain files / directories when we are migrating the repository from cvs to git by using git cvsimport?
Kindly help me.
Thanks in Advance!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can either skip files with:
git cvsimport -S <regex_of_files_to_skip>Or, you can use
cvspsoptions withgit cvsimport -p <cvsps_options>The
cvspsoptions you might consider are for example-l,-f, or-b, although these specific what to include, not what to exclude.