{"id":46,"date":"2009-03-04T08:12:52","date_gmt":"2009-03-04T08:12:52","guid":{"rendered":"http:\/\/kedar.nitty-witty.com\/?p=46"},"modified":"2009-03-04T08:12:52","modified_gmt":"2009-03-04T08:12:52","slug":"quick-look-at-subversion-svn-commands-overview","status":"publish","type":"post","link":"https:\/\/kedar.nitty-witty.com\/blog\/quick-look-at-subversion-svn-commands-overview","title":{"rendered":"Quick look at subversion \/ svn commands &#8211; overview"},"content":{"rendered":"<h2>About Subversion:<\/h2>\n<p><a href=\"http:\/\/subversion.tigris.org\/\" target=\"_blank\">Subversion<\/a>, also known as svn, is a version control system much like the Concurrent Versions System (CVS). Version control systems allow many individuals (who may be distributed geographically) to collaborate on a set of files (typically source code). Subversion has all the major features of CVS, plus certain new features that CVS users often wish they had. This package includes the Subversion client (svn), tools to create a Subversion repository (svnadmin) and to make a repository available over a network (svnserve).<\/p>\n<p>Below is an introductory part for regular usage and basic details for working with SVN, performaing different tasks with SVN. Detailed information can be surely obtained from the\u00a0<a href=\"http:\/\/subversion.tigris.org\/\" target=\"_blank\">Subversion site<\/a><\/p>\n<h2>Regular SVN Commands:<\/h2>\n<p>svn &#8211;help \/\/ obtaining commandline help from svn<br \/>\nsvn add filename \/\/ adding file to svn<br \/>\nsvn add directory \/\/ adding directory to svn<br \/>\nsvn ci filename -m &#8220;message&#8221; \/\/ checking in\/commiting a file to svn<br \/>\nsvn commit &#8211;message &#8220;message&#8221; filename<br \/>\nsvn ci foldername -m &#8220;&#8221;<\/p>\n<h2>Creating a tag from trunk:<\/h2>\n<p>svn copy http:\/\/path\/to\/repository\/trunk http:\/\/path\/to\/repository\/tags\/TagName -m &#8220;Message for Tag Release &#8221;<\/p>\n<h2>Creating a tag from branch:<\/h2>\n<p>svn copy http:\/\/path\/to\/repository\/branches\/branch_name http:\/\/path\/to\/repository\/tags\/TagName -m &#8220;Message for Tag Release &#8221;<\/p>\n<h2>Switch tag\/branch\/trunk to specific location:<\/h2>\n<p>svn switch http:\/\/path\/to\/svn\/repository\/tag \/target\/path\/<\/p>\n<h2>To switch from old svn repository url to newer:<\/h2>\n<p>svn switch &#8211;relocate http:\/\/path\/to\/svn\/repository\/tag http:\/\/new\/path\/to\/svn\/repository\/tag<\/p>\n<p>We shifted our repository to newer location. The tags created from earlier repository were still pointing to older SVN Repository path. To correct that we must relocate the point of current settings to newer location.<\/p>\n<h2>Cleaning up subversion files caused by escaped processes and crashed:<\/h2>\n<p>svn cleanup<\/p>\n<h2>Difference between SVN repository with present changes:<\/h2>\n<p>svn diff filename<br \/>\nsvn di filename<\/p>\n<h2>Difference between two SVN Revisions:<\/h2>\n<p>svn diff -r rev1:rev2 filename<\/p>\n<h2>List directory\/file under repository<\/h2>\n<p>svn list directory<br \/>\nsvn ls directory<\/p>\n<h2>Display information about file or directory including Date modified, author, revision, path in repository.<\/h2>\n<p>svn info filename<\/p>\n<h2>Show the Subversion log messages for a set of revision(s) and\/or file(s) and\/or all directory contents in repository.<\/h2>\n<p>svn log filename<br \/>\nsvn log .<br \/>\nsvn log http:\/\/path\/to\/file<br \/>\nsvn log -v .<br \/>\nsvn log -r RevisionNumber http:\/\/path\/to\/file<\/p>\n<h2>Create \/ Rename Directories in SVN:<\/h2>\n<p>svn mkdir directory<br \/>\nsvn mkdir http:\/\/path\/to\/directory<br \/>\nsvn move directory1 directory2<br \/>\nsvn mv directory1 directory2<br \/>\nsvn mv file-old-name fil-new-name<\/p>\n<h2>Undo changes to local file with respect to SVN Version:<\/h2>\n<p>svn revert filename<\/p>\n<h2>Mark files Resolved after resolving conflicts in file:<\/h2>\n<p>svn resolved filename<\/p>\n<h2>Check status of file\/directory in SVN:<\/h2>\n<p>svn status<br \/>\nsvn st<\/p>\n<p><em>Meanings of Status&#8217;s first column:<\/em><\/p>\n<p>U: File to be updated<br \/>\nA: File to be added<br \/>\nD: File to be deleted<br \/>\nR: File to be replaced<br \/>\nG: File to be merged<br \/>\nC: Conflicting changes<br \/>\nX: Resource is external to repository (svn:externals)<br \/>\n?: File\/directory not under version control<br \/>\n!: File\/directory missing<br \/>\n&#8216; &#8216;: no modifications<br \/>\nC: Conflicted<br \/>\nM: Modified<br \/>\n*: Local file different than repository. File will be overwritten with the updated version from the server, if you perform an update.<br \/>\nL: locked<br \/>\nS: switched to a branch<\/p>\n<h2>Retrive latest commited changes from SVN Repository to your local copy<\/h2>\n<p>svn update<br \/>\nsvn up<\/p>\n<p><code> <\/code><\/p>\n","protected":false},"excerpt":{"rendered":"About Subversion: Subversion, also known as svn, is a version control system much like the Concurrent Versions System (CVS). Version control systems allow many individuals (who may be distributed geographically)&hellip;\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[6],"tags":[109,426],"class_list":["post-46","post","type-post","status-publish","format-standard","category-technical","tag-subversion","tag-technical"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"About Subversion: Subversion, also known as svn, is a version control system much like the Concurrent Versions System (CVS). Version control systems allow many individuals (who may be distributed geographically) to collaborate on a set of files (typically source code). Subversion has all the major features of CVS, plus certain new features that CVS users\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Kedar\"\/>\n\t<meta name=\"google-site-verification\" content=\"_Bu1h5r0PxIC0D2jBVdmYN45RTeG9ogcX85XLkbG1qA\" \/>\n\t<meta name=\"msvalidate.01\" content=\"116B62074CBCA1BA99B8CCE09CCF2FB8\" \/>\n\t<meta name=\"keywords\" content=\"subversion,technical\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/kedar.nitty-witty.com\/blog\/quick-look-at-subversion-svn-commands-overview\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Change Is Inevitable | Kedar Vaijanapurkar&#039;s Blog for MySQL, technology and various subjects\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Quick look at subversion \/ svn commands \u2013 overview | Change Is Inevitable\" \/>\n\t\t<meta property=\"og:description\" content=\"About Subversion: Subversion, also known as svn, is a version control system much like the Concurrent Versions System (CVS). Version control systems allow many individuals (who may be distributed geographically) to collaborate on a set of files (typically source code). Subversion has all the major features of CVS, plus certain new features that CVS users\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/kedar.nitty-witty.com\/blog\/quick-look-at-subversion-svn-commands-overview\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2009-03-04T08:12:52+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2009-03-04T08:12:52+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Quick look at subversion \/ svn commands \u2013 overview | Change Is Inevitable\" \/>\n\t\t<meta name=\"twitter:description\" content=\"About Subversion: Subversion, also known as svn, is a version control system much like the Concurrent Versions System (CVS). Version control systems allow many individuals (who may be distributed geographically) to collaborate on a set of files (typically source code). Subversion has all the major features of CVS, plus certain new features that CVS users\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/quick-look-at-subversion-svn-commands-overview#article\",\"name\":\"Quick look at subversion \\\/ svn commands \\u2013 overview | Change Is Inevitable\",\"headline\":\"Quick look at subversion \\\/ svn commands &#8211; overview\",\"author\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/author\\\/admin#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/quick-look-at-subversion-svn-commands-overview#articleImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/be1f7021485c325d92cc4c5d961accb9c1af72b1b11281a790f7f4f066ef10d3?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Kedar\"},\"datePublished\":\"2009-03-04T08:12:52+00:00\",\"dateModified\":\"2009-03-04T08:12:52+00:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/quick-look-at-subversion-svn-commands-overview#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/quick-look-at-subversion-svn-commands-overview#webpage\"},\"articleSection\":\"Technical, subversion, Technical\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/quick-look-at-subversion-svn-commands-overview#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/category\\\/technical#listItem\",\"name\":\"Technical\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/category\\\/technical#listItem\",\"position\":2,\"name\":\"Technical\",\"item\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/category\\\/technical\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/quick-look-at-subversion-svn-commands-overview#listItem\",\"name\":\"Quick look at subversion \\\/ svn commands &#8211; overview\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/quick-look-at-subversion-svn-commands-overview#listItem\",\"position\":3,\"name\":\"Quick look at subversion \\\/ svn commands &#8211; overview\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/category\\\/technical#listItem\",\"name\":\"Technical\"}}]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/#person\",\"name\":\"Kedar\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/quick-look-at-subversion-svn-commands-overview#personImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/be1f7021485c325d92cc4c5d961accb9c1af72b1b11281a790f7f4f066ef10d3?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Kedar\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/author\\\/admin#author\",\"url\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/author\\\/admin\",\"name\":\"Kedar\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/quick-look-at-subversion-svn-commands-overview#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/be1f7021485c325d92cc4c5d961accb9c1af72b1b11281a790f7f4f066ef10d3?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Kedar\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/quick-look-at-subversion-svn-commands-overview#webpage\",\"url\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/quick-look-at-subversion-svn-commands-overview\",\"name\":\"Quick look at subversion \\\/ svn commands \\u2013 overview | Change Is Inevitable\",\"description\":\"About Subversion: Subversion, also known as svn, is a version control system much like the Concurrent Versions System (CVS). Version control systems allow many individuals (who may be distributed geographically) to collaborate on a set of files (typically source code). Subversion has all the major features of CVS, plus certain new features that CVS users\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/quick-look-at-subversion-svn-commands-overview#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/author\\\/admin#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/author\\\/admin#author\"},\"datePublished\":\"2009-03-04T08:12:52+00:00\",\"dateModified\":\"2009-03-04T08:12:52+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/\",\"name\":\"..::CHANGE is INEVITABLE::..\",\"description\":\"Kedar Vaijanapurkar's Blog for MySQL, technology and various subjects\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Quick look at subversion \/ svn commands \u2013 overview | Change Is Inevitable","description":"About Subversion: Subversion, also known as svn, is a version control system much like the Concurrent Versions System (CVS). Version control systems allow many individuals (who may be distributed geographically) to collaborate on a set of files (typically source code). Subversion has all the major features of CVS, plus certain new features that CVS users","canonical_url":"https:\/\/kedar.nitty-witty.com\/blog\/quick-look-at-subversion-svn-commands-overview","robots":"max-image-preview:large","keywords":"subversion,technical","webmasterTools":{"google-site-verification":"_Bu1h5r0PxIC0D2jBVdmYN45RTeG9ogcX85XLkbG1qA","msvalidate.01":"116B62074CBCA1BA99B8CCE09CCF2FB8","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/kedar.nitty-witty.com\/blog\/quick-look-at-subversion-svn-commands-overview#article","name":"Quick look at subversion \/ svn commands \u2013 overview | Change Is Inevitable","headline":"Quick look at subversion \/ svn commands &#8211; overview","author":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/author\/admin#author"},"publisher":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/#person"},"image":{"@type":"ImageObject","@id":"https:\/\/kedar.nitty-witty.com\/blog\/quick-look-at-subversion-svn-commands-overview#articleImage","url":"https:\/\/secure.gravatar.com\/avatar\/be1f7021485c325d92cc4c5d961accb9c1af72b1b11281a790f7f4f066ef10d3?s=96&d=mm&r=g","width":96,"height":96,"caption":"Kedar"},"datePublished":"2009-03-04T08:12:52+00:00","dateModified":"2009-03-04T08:12:52+00:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/quick-look-at-subversion-svn-commands-overview#webpage"},"isPartOf":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/quick-look-at-subversion-svn-commands-overview#webpage"},"articleSection":"Technical, subversion, Technical"},{"@type":"BreadcrumbList","@id":"https:\/\/kedar.nitty-witty.com\/blog\/quick-look-at-subversion-svn-commands-overview#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/kedar.nitty-witty.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog\/category\/technical#listItem","name":"Technical"}},{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog\/category\/technical#listItem","position":2,"name":"Technical","item":"https:\/\/kedar.nitty-witty.com\/blog\/category\/technical","nextItem":{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog\/quick-look-at-subversion-svn-commands-overview#listItem","name":"Quick look at subversion \/ svn commands &#8211; overview"},"previousItem":{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog\/quick-look-at-subversion-svn-commands-overview#listItem","position":3,"name":"Quick look at subversion \/ svn commands &#8211; overview","previousItem":{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog\/category\/technical#listItem","name":"Technical"}}]},{"@type":"Person","@id":"https:\/\/kedar.nitty-witty.com\/blog\/#person","name":"Kedar","image":{"@type":"ImageObject","@id":"https:\/\/kedar.nitty-witty.com\/blog\/quick-look-at-subversion-svn-commands-overview#personImage","url":"https:\/\/secure.gravatar.com\/avatar\/be1f7021485c325d92cc4c5d961accb9c1af72b1b11281a790f7f4f066ef10d3?s=96&d=mm&r=g","width":96,"height":96,"caption":"Kedar"}},{"@type":"Person","@id":"https:\/\/kedar.nitty-witty.com\/blog\/author\/admin#author","url":"https:\/\/kedar.nitty-witty.com\/blog\/author\/admin","name":"Kedar","image":{"@type":"ImageObject","@id":"https:\/\/kedar.nitty-witty.com\/blog\/quick-look-at-subversion-svn-commands-overview#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/be1f7021485c325d92cc4c5d961accb9c1af72b1b11281a790f7f4f066ef10d3?s=96&d=mm&r=g","width":96,"height":96,"caption":"Kedar"}},{"@type":"WebPage","@id":"https:\/\/kedar.nitty-witty.com\/blog\/quick-look-at-subversion-svn-commands-overview#webpage","url":"https:\/\/kedar.nitty-witty.com\/blog\/quick-look-at-subversion-svn-commands-overview","name":"Quick look at subversion \/ svn commands \u2013 overview | Change Is Inevitable","description":"About Subversion: Subversion, also known as svn, is a version control system much like the Concurrent Versions System (CVS). Version control systems allow many individuals (who may be distributed geographically) to collaborate on a set of files (typically source code). Subversion has all the major features of CVS, plus certain new features that CVS users","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/quick-look-at-subversion-svn-commands-overview#breadcrumblist"},"author":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/author\/admin#author"},"creator":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/author\/admin#author"},"datePublished":"2009-03-04T08:12:52+00:00","dateModified":"2009-03-04T08:12:52+00:00"},{"@type":"WebSite","@id":"https:\/\/kedar.nitty-witty.com\/blog\/#website","url":"https:\/\/kedar.nitty-witty.com\/blog\/","name":"..::CHANGE is INEVITABLE::..","description":"Kedar Vaijanapurkar's Blog for MySQL, technology and various subjects","inLanguage":"en-US","publisher":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/#person"}}]},"og:locale":"en_US","og:site_name":"Change Is Inevitable | Kedar Vaijanapurkar's Blog for MySQL, technology and various subjects","og:type":"article","og:title":"Quick look at subversion \/ svn commands \u2013 overview | Change Is Inevitable","og:description":"About Subversion: Subversion, also known as svn, is a version control system much like the Concurrent Versions System (CVS). Version control systems allow many individuals (who may be distributed geographically) to collaborate on a set of files (typically source code). Subversion has all the major features of CVS, plus certain new features that CVS users","og:url":"https:\/\/kedar.nitty-witty.com\/blog\/quick-look-at-subversion-svn-commands-overview","article:published_time":"2009-03-04T08:12:52+00:00","article:modified_time":"2009-03-04T08:12:52+00:00","twitter:card":"summary","twitter:title":"Quick look at subversion \/ svn commands \u2013 overview | Change Is Inevitable","twitter:description":"About Subversion: Subversion, also known as svn, is a version control system much like the Concurrent Versions System (CVS). Version control systems allow many individuals (who may be distributed geographically) to collaborate on a set of files (typically source code). Subversion has all the major features of CVS, plus certain new features that CVS users"},"aioseo_meta_data":{"post_id":"46","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"location":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2021-03-24 17:41:56","updated":"2025-08-16 18:59:42","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/kedar.nitty-witty.com\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">\u00bb<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/kedar.nitty-witty.com\/blog\/category\/technical\" title=\"Technical\">Technical<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">\u00bb<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tQuick look at subversion \/ svn commands \u2013 overview\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/kedar.nitty-witty.com\/blog"},{"label":"Technical","link":"https:\/\/kedar.nitty-witty.com\/blog\/category\/technical"},{"label":"Quick look at subversion \/ svn commands &#8211; overview","link":"https:\/\/kedar.nitty-witty.com\/blog\/quick-look-at-subversion-svn-commands-overview"}],"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/posts\/46","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/comments?post=46"}],"version-history":[{"count":0,"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/posts\/46\/revisions"}],"wp:attachment":[{"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/media?parent=46"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/categories?post=46"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/tags?post=46"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}