What is the difference between checkout (check out) and export in SVN? Point one: SVN is a common version control software commonly used. SVN Check out (check
The difference between checkout (check out) and export in SVN
?
Opinion one:
SVN is a common version control software that is commonly used. The differences between checkout (check out) and export in SVN are mainly as follows:
(1) Check out corresponds to check in, export corresponds to import.
(2) After the check out export obtains the file, the exported file is still in SVN version control, and is associated with the repository, for example, you can do SVN update or SVN commit operation. At the same time, there is an. svn hidden folder under the Export folder, which stores some version of the metadata information.
(3) Export simply exports a version of the data, the exported files out of SVN version control, modified without the update and commit operation. There is no. svn directory under the Export folder
?
Opinion two:
When you want to publish or compile, and finally use export, it will not introduce SVN's additional files
When you need to modify and submit, use checkout, it will create a workspace in your local
?
?
Problem:
Create a new two folder Co, export. It's all empty! Then the same SVN address
? A checkout to Co folder
An export to export folder
Actually, checkout can make it up.
Export is always an error, strange ...
?
Reply:
1.
Checkout (checked out): equivalent to getting locally from the server. Gets the file that is controlled by 7 x (v??? K) _6 b$ N1 \9 Z3 A
Export: Also gets the file locally. But the retrieved files are not version-controlled
?
2.
Checkout (Checkout): Gets the file with SVN information, that is, the file upstairs is controlled by SVN. & D "'/Q,}?? o& z:l-C3]
Export: Gets the file without SVN information and is not controlled by SVN.
The difference between checkout (check out) and export in SVN