I have used GIT for a long time and new to SVN. I couldn’t find a which satisfy me the difference between svn import and checkout. Highly appreciate if someone can show me with an example. Thanks
Share
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.
“import” and “checkout” are polar opposites.
“Import” is to bring something completely outside of version control into SVN.
Once something is under SVN control, you can “commit” (new modifications), or “checkout” (stuff you’ve already committed).
At any time, you can “export” some or all of your project into a “clean directory”. The source you’ve exported is not under version control.
You “import into” and “export out of” SVN.
You “commit” and “checkout” stuff that’s already under SVN control.