On 10/04/12 22:45, محمد الجداوي wrote:
So, Is there a difference between "svn update" and "svn checkout"?
Yes. svn checkout <url> <folder> makes a "copy" of the current version of the repository at <url> into <folder> (if you omit <folder>, it uses the end of <url>)
svn up <item> Where <item> is a folder of file in a file or repository, updates it to its latest version. Usually, you go to the root of your copy of the repository copy and run svn up, which updates to its later version the current folder, and thus your whole copy.