{"id":116590,"date":"2022-11-29T11:00:00","date_gmt":"2022-11-29T09:00:00","guid":{"rendered":"https:\/\/examples.javacodegeeks.com\/?p=116590"},"modified":"2022-11-28T12:05:41","modified_gmt":"2022-11-28T10:05:41","slug":"error-src-refspec-main-does-not-match-any","status":"publish","type":"post","link":"https:\/\/examples.javacodegeeks.com\/error-src-refspec-main-does-not-match-any\/","title":{"rendered":"error: src refspec main does not match any"},"content":{"rendered":"<h2 class=\"wp-block-heading\" id=\"h-1-introduction\">1. Introduction<\/h2>\n<p>In this example, we shall explain to you in detail what an &#8220;error: src refspec main does not match any&#8221; in &#8220;<a href=\"https:\/\/git-scm.com\/\">git<\/a>&#8221; is and how you can deal with such errors if you encounter them in the future.<\/p>\n<h2 class=\"wp-block-heading\" id=\"h-2-error-description\">2. Error Description<\/h2>\n<p>This error occurs when you try to push code from a local repository to a remote  repository while using the <code>\"git push origin main\"<\/code> command in <code>git command line<\/code> using <code>git bash<\/code> and it happens that there is no main branch present hence an error. <\/p>\n<h2 class=\"wp-block-heading\" id=\"h-3-recreating-the-error\">3. Recreating the Error<\/h2>\n<p>There are several things that can trigger an <code>\"src refspec error main does not match any\"<\/code> error. The illustration below will show you how to produce this error. <\/p>\n<p>Let&#8217;s assume you cloned a new repository where the default branch is master and there is no main branch. When you type the command: <code>\"git push origin main\"<\/code>, it displays the <code>\"refspec main\"<\/code> error like this:<div style=\"display:inline-block; margin: 15px 0;\"> <div id=\"adngin-JavaCodeGeeks_incontent_video-0\" style=\"display:inline-block;\"><\/div> <\/div><\/p>\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><a href=\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2022\/11\/pushing-to-origin-main.png\"><img decoding=\"async\" width=\"433\" height=\"101\" src=\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2022\/11\/pushing-to-origin-main.png\" alt=\"Fig. 1. git terminal displaying the &quot;error: src refspec main does not match any&quot;\" class=\"wp-image-116660\" srcset=\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2022\/11\/pushing-to-origin-main.png 433w, https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2022\/11\/pushing-to-origin-main-300x70.png 300w\" sizes=\"(max-width: 433px) 100vw, 433px\" \/><\/a><figcaption class=\"wp-element-caption\">Absence of the main branch triggering the &#8220;error: src refspec main does not match any&#8221;<\/figcaption><\/figure>\n<\/div>\n<h2 class=\"wp-block-heading\" id=\"h-4-dealing-with-refspec-errors\">4. Dealing with refspec errors<\/h2>\n<p>Now that you are aware of the <code>\"refspec error\"<\/code>, let&#8217;s explain how to deal with such errors in <code>git<\/code>. Whenever you encounter such errors don&#8217;t panic just follow these procedures like this:<\/p>\n<p>Display the remote branches connected to your local branch on your computer using the <code>\"git branch -b\"<\/code> command like this:<\/p>\n<p>git branch -b<\/p>\n<p>#results<\/p>\n<p># origin\/master<\/p>\n<p>From the above result, it is seen that we have only the <code>master branch<\/code> available in our <code>remote repository<\/code> and no <code>main branch<\/code> hence that explains why we had the <code>\"src refspec main does not match any\"<\/code> error.<\/p>\n<p>In order for us to create a <code>branch<\/code> called <code>main<\/code> where we are going to migrate eventually to, we can either create <code>branch<\/code> directly on the <code>Github website<\/code> or we use the <code>git terminal<\/code> and type the command like this:<\/p>\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><a href=\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2022\/11\/creating-a-local-main-branch.png\"><img decoding=\"async\" width=\"451\" height=\"92\" src=\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2022\/11\/creating-a-local-main-branch.png\" alt=\"Fig. 2. Using the command &quot;git checkout -b main&quot; to create the main branch\" class=\"wp-image-116665\" srcset=\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2022\/11\/creating-a-local-main-branch.png 451w, https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2022\/11\/creating-a-local-main-branch-300x61.png 300w\" sizes=\"(max-width: 451px) 100vw, 451px\" \/><\/a><figcaption class=\"wp-element-caption\">Creating our main branch<\/figcaption><\/figure>\n<\/div>\n<p>After creating the <code>\"main branch\"<\/code> we are going to type the command <code>\"git push origin main\"<\/code> and it won&#8217;t display an error anymore proving that we have resolved the error.<\/p>\n<h2 class=\"wp-block-heading\" id=\"h-5-conclusion\">5. Conclusion<\/h2>\n<p>When next you encounter an <code>\"error: src refspec main does not match any\"<\/code>, just know that the <code>main branch<\/code> does not exist in your <code>remote repository<\/code> and hence try to create one.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>1. Introduction In this example, we shall explain to you in detail what an &#8220;error: src refspec main does not match any&#8221; in &#8220;git&#8221; is and how you can deal with such errors if you encounter them in the future. 2. Error Description This error occurs when you try to push code from a local &hellip;<\/p>\n","protected":false},"author":251,"featured_media":27377,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1353],"tags":[46830,1464,46831],"class_list":["post-116590","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-git","tag-git-error","tag-git-push","tag-refspec"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>error: src refspec main does not match any - Java Code Geeks<\/title>\n<meta name=\"description\" content=\"In this example, we shall explain to you in detail what an &quot;error: src refspec main does not match any&quot; in &quot;git&quot; is and how you can deal...\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/examples.javacodegeeks.com\/error-src-refspec-main-does-not-match-any\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"error: src refspec main does not match any - Java Code Geeks\" \/>\n<meta property=\"og:description\" content=\"In this example, we shall explain to you in detail what an &quot;error: src refspec main does not match any&quot; in &quot;git&quot; is and how you can deal...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/examples.javacodegeeks.com\/error-src-refspec-main-does-not-match-any\/\" \/>\n<meta property=\"og:site_name\" content=\"Examples Java Code Geeks\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/javacodegeeks\" \/>\n<meta property=\"article:published_time\" content=\"2022-11-29T09:00:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2015\/09\/git-logo.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"150\" \/>\n\t<meta property=\"og:image:height\" content=\"150\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Amanye Sirri\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@javacodegeeks\" \/>\n<meta name=\"twitter:site\" content=\"@javacodegeeks\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Amanye Sirri\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/error-src-refspec-main-does-not-match-any\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/error-src-refspec-main-does-not-match-any\/\"},\"author\":{\"name\":\"Amanye Sirri\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/#\/schema\/person\/56aa5aed54fcdeb790bfda94fb6f203a\"},\"headline\":\"error: src refspec main does not match any\",\"datePublished\":\"2022-11-29T09:00:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/error-src-refspec-main-does-not-match-any\/\"},\"wordCount\":320,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/error-src-refspec-main-does-not-match-any\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2015\/09\/git-logo.jpg\",\"keywords\":[\"git error\",\"git push\",\"refspec\"],\"articleSection\":[\"Git\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/examples.javacodegeeks.com\/error-src-refspec-main-does-not-match-any\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/error-src-refspec-main-does-not-match-any\/\",\"url\":\"https:\/\/examples.javacodegeeks.com\/error-src-refspec-main-does-not-match-any\/\",\"name\":\"error: src refspec main does not match any - Java Code Geeks\",\"isPartOf\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/error-src-refspec-main-does-not-match-any\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/error-src-refspec-main-does-not-match-any\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2015\/09\/git-logo.jpg\",\"datePublished\":\"2022-11-29T09:00:00+00:00\",\"description\":\"In this example, we shall explain to you in detail what an \\\"error: src refspec main does not match any\\\" in \\\"git\\\" is and how you can deal...\",\"breadcrumb\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/error-src-refspec-main-does-not-match-any\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/examples.javacodegeeks.com\/error-src-refspec-main-does-not-match-any\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/error-src-refspec-main-does-not-match-any\/#primaryimage\",\"url\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2015\/09\/git-logo.jpg\",\"contentUrl\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2015\/09\/git-logo.jpg\",\"width\":150,\"height\":150},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/error-src-refspec-main-does-not-match-any\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/examples.javacodegeeks.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Software Development\",\"item\":\"https:\/\/examples.javacodegeeks.com\/category\/software-development\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Git\",\"item\":\"https:\/\/examples.javacodegeeks.com\/category\/software-development\/git\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"error: src refspec main does not match any\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/#website\",\"url\":\"https:\/\/examples.javacodegeeks.com\/\",\"name\":\"Java Code Geeks\",\"description\":\"Java Examples and Code Snippets\",\"publisher\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/#organization\"},\"alternateName\":\"JCG\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/examples.javacodegeeks.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/#organization\",\"name\":\"Exelixis Media P.C.\",\"url\":\"https:\/\/examples.javacodegeeks.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"contentUrl\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"width\":864,\"height\":246,\"caption\":\"Exelixis Media P.C.\"},\"image\":{\"@id\":\"https:\/\/examples.javacodegeeks.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/javacodegeeks\",\"https:\/\/x.com\/javacodegeeks\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/#\/schema\/person\/56aa5aed54fcdeb790bfda94fb6f203a\",\"name\":\"Amanye Sirri\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/examples.javacodegeeks.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2022\/11\/cropped-Amanye.Sirri_-96x96.jpg\",\"contentUrl\":\"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2022\/11\/cropped-Amanye.Sirri_-96x96.jpg\",\"caption\":\"Amanye Sirri\"},\"description\":\"Sirri holds an Engineering Diploma in Computer Science with a major in Software Engineering from the African Institute of Computer Science in Cameroon. During her studies, she has been involved with a large number of projects ranging from programming to software engineering and design and analysis. She works as a computer teacher where she teaches students how to code in Java.\",\"url\":\"https:\/\/examples.javacodegeeks.com\/author\/amanye-sirri\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"error: src refspec main does not match any - Java Code Geeks","description":"In this example, we shall explain to you in detail what an \"error: src refspec main does not match any\" in \"git\" is and how you can deal...","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/examples.javacodegeeks.com\/error-src-refspec-main-does-not-match-any\/","og_locale":"en_US","og_type":"article","og_title":"error: src refspec main does not match any - Java Code Geeks","og_description":"In this example, we shall explain to you in detail what an \"error: src refspec main does not match any\" in \"git\" is and how you can deal...","og_url":"https:\/\/examples.javacodegeeks.com\/error-src-refspec-main-does-not-match-any\/","og_site_name":"Examples Java Code Geeks","article_publisher":"https:\/\/www.facebook.com\/javacodegeeks","article_published_time":"2022-11-29T09:00:00+00:00","og_image":[{"width":150,"height":150,"url":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2015\/09\/git-logo.jpg","type":"image\/jpeg"}],"author":"Amanye Sirri","twitter_card":"summary_large_image","twitter_creator":"@javacodegeeks","twitter_site":"@javacodegeeks","twitter_misc":{"Written by":"Amanye Sirri","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/examples.javacodegeeks.com\/error-src-refspec-main-does-not-match-any\/#article","isPartOf":{"@id":"https:\/\/examples.javacodegeeks.com\/error-src-refspec-main-does-not-match-any\/"},"author":{"name":"Amanye Sirri","@id":"https:\/\/examples.javacodegeeks.com\/#\/schema\/person\/56aa5aed54fcdeb790bfda94fb6f203a"},"headline":"error: src refspec main does not match any","datePublished":"2022-11-29T09:00:00+00:00","mainEntityOfPage":{"@id":"https:\/\/examples.javacodegeeks.com\/error-src-refspec-main-does-not-match-any\/"},"wordCount":320,"commentCount":0,"publisher":{"@id":"https:\/\/examples.javacodegeeks.com\/#organization"},"image":{"@id":"https:\/\/examples.javacodegeeks.com\/error-src-refspec-main-does-not-match-any\/#primaryimage"},"thumbnailUrl":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2015\/09\/git-logo.jpg","keywords":["git error","git push","refspec"],"articleSection":["Git"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/examples.javacodegeeks.com\/error-src-refspec-main-does-not-match-any\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/examples.javacodegeeks.com\/error-src-refspec-main-does-not-match-any\/","url":"https:\/\/examples.javacodegeeks.com\/error-src-refspec-main-does-not-match-any\/","name":"error: src refspec main does not match any - Java Code Geeks","isPartOf":{"@id":"https:\/\/examples.javacodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/examples.javacodegeeks.com\/error-src-refspec-main-does-not-match-any\/#primaryimage"},"image":{"@id":"https:\/\/examples.javacodegeeks.com\/error-src-refspec-main-does-not-match-any\/#primaryimage"},"thumbnailUrl":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2015\/09\/git-logo.jpg","datePublished":"2022-11-29T09:00:00+00:00","description":"In this example, we shall explain to you in detail what an \"error: src refspec main does not match any\" in \"git\" is and how you can deal...","breadcrumb":{"@id":"https:\/\/examples.javacodegeeks.com\/error-src-refspec-main-does-not-match-any\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/examples.javacodegeeks.com\/error-src-refspec-main-does-not-match-any\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/examples.javacodegeeks.com\/error-src-refspec-main-does-not-match-any\/#primaryimage","url":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2015\/09\/git-logo.jpg","contentUrl":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2015\/09\/git-logo.jpg","width":150,"height":150},{"@type":"BreadcrumbList","@id":"https:\/\/examples.javacodegeeks.com\/error-src-refspec-main-does-not-match-any\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/examples.javacodegeeks.com\/"},{"@type":"ListItem","position":2,"name":"Software Development","item":"https:\/\/examples.javacodegeeks.com\/category\/software-development\/"},{"@type":"ListItem","position":3,"name":"Git","item":"https:\/\/examples.javacodegeeks.com\/category\/software-development\/git\/"},{"@type":"ListItem","position":4,"name":"error: src refspec main does not match any"}]},{"@type":"WebSite","@id":"https:\/\/examples.javacodegeeks.com\/#website","url":"https:\/\/examples.javacodegeeks.com\/","name":"Java Code Geeks","description":"Java Examples and Code Snippets","publisher":{"@id":"https:\/\/examples.javacodegeeks.com\/#organization"},"alternateName":"JCG","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/examples.javacodegeeks.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/examples.javacodegeeks.com\/#organization","name":"Exelixis Media P.C.","url":"https:\/\/examples.javacodegeeks.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/examples.javacodegeeks.com\/#\/schema\/logo\/image\/","url":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","contentUrl":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","width":864,"height":246,"caption":"Exelixis Media P.C."},"image":{"@id":"https:\/\/examples.javacodegeeks.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/javacodegeeks","https:\/\/x.com\/javacodegeeks"]},{"@type":"Person","@id":"https:\/\/examples.javacodegeeks.com\/#\/schema\/person\/56aa5aed54fcdeb790bfda94fb6f203a","name":"Amanye Sirri","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/examples.javacodegeeks.com\/#\/schema\/person\/image\/","url":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2022\/11\/cropped-Amanye.Sirri_-96x96.jpg","contentUrl":"https:\/\/examples.javacodegeeks.com\/wp-content\/uploads\/2022\/11\/cropped-Amanye.Sirri_-96x96.jpg","caption":"Amanye Sirri"},"description":"Sirri holds an Engineering Diploma in Computer Science with a major in Software Engineering from the African Institute of Computer Science in Cameroon. During her studies, she has been involved with a large number of projects ranging from programming to software engineering and design and analysis. She works as a computer teacher where she teaches students how to code in Java.","url":"https:\/\/examples.javacodegeeks.com\/author\/amanye-sirri\/"}]}},"_links":{"self":[{"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/posts\/116590","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/users\/251"}],"replies":[{"embeddable":true,"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/comments?post=116590"}],"version-history":[{"count":0,"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/posts\/116590\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/media\/27377"}],"wp:attachment":[{"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/media?parent=116590"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/categories?post=116590"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/examples.javacodegeeks.com\/wp-json\/wp\/v2\/tags?post=116590"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}