{"id":22834,"date":"2020-09-17T14:52:45","date_gmt":"2020-09-17T21:52:45","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=22834"},"modified":"2023-12-01T04:00:12","modified_gmt":"2023-12-01T12:00:12","slug":"git-fatal-origin-does-not-appear-to-be-a-git-repository","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/git-fatal-origin-does-not-appear-to-be-a-git-repository\/","title":{"rendered":"Git fatal: \u2018origin\u2019 does not appear to be a git repository Solution"},"content":{"rendered":"\n<p>By default, <a href=\"https:\/\/careerkarma.com\/blog\/what-is-git\/\">a Git repository<\/a> is not associated with a remote repository. If you try to push changes to a remote repository without first specifying its location, you\u2019ll encounter the \u201cfatal: \u2018origin\u2019 does not appear to be a git repository\u201d error.<br><\/p>\n\n\n\n<p>This guide talks about why this error is raised and what it means. We\u2019ll walk through an example of this error so you can figure out how to fix it.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">fatal: \u2018origin\u2019 does not appear to be a git repository<\/h2>\n\n\n\n<p>The <a href=\"https:\/\/careerkarma.com\/blog\/git-init\/\">git init command<\/a> creates a new Git repository. This command only initializes a folder as a Git repository. It does not link a repository to a remote repository.<br><\/p>\n\n\n\n<p>In contrast, the git clone command does link a local repository to a remote one. This is because Git knows where the code from a project came from and uses the location you cloned to guess where you are going to be pushing commits.<br><\/p>\n\n\n\n<p>The \u201cfatal: \u2018origin\u2019 does not appear to be a git repository\u201d error occurs when you set up a new repository and try to commit code without first instructing Git on where the code should be pushed.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">An Example Scenario<\/h2>\n\n\n\n<p>We\u2019re going to create a new repository, ck-git.<br><\/p>\n\n\n\n<p>Make a new folder and initialize the folder as a Git repository:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>mkdir ck-git\ncd ck-git\ngit init\n<\/pre><\/div>\n\n\n\n<p>We have navigated into our new ck-git folder then we initialized a Git repository inside that folder. Now, create a file called app.py with the following contents:<br><\/p>\n\n\n\n<p><code>print(\u201cTest\u201d)<br><\/code><\/p>\n\n\n\n<p>Our repository now has a file we can push to our remote repository. Before we can push our code, we need to <a href=\"https:\/\/careerkarma.com\/blog\/git-add\/\">add our file to our repository<\/a> and commit that file:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git add app.py\ngit commit -m &quot;feat: Create app.py&quot;\n<\/pre><\/div>\n\n\n\n<p>The first command adds app.py to the staging area. The second command <a href=\"https:\/\/careerkarma.com\/blog\/git-commit\/\">creates a commit<\/a> containing the changes made to all the files in the staging area.<br><\/p>\n\n\n\n<p>Now that we\u2019ve created a commit, we can push it to the master branch on our remote Git repo:<br><\/p>\n\n\n\n<p><code>git push origin master<br><\/code><\/p>\n\n\n\n<p>When we run this command, an error occurs:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>'origin' does not appear to be a git repository\nfatal: Could not read from remote repository.\n<\/pre><\/div>\n\n\n\n<p>Make sure you have the correct access rights and the repository exists.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Solution<\/h2>\n\n\n\n<p>We have not told Git the location of the \u201corigin\u201d repository. We\u2019ve initialized a new repository using \u201cgit init\u201d and so our repository is not linked to any remote repository by default.<br><\/p>\n\n\n\n<p>To fix this error, we need to manually tell Git where the remote version of our repository exists. Do this using the <a href=\"https:\/\/careerkarma.com\/blog\/git-add-remote\/\">git remote add command<\/a>:<br><\/p>\n\n\n\n<p><code>git remote add origin https:\/\/github.com\/career-karma-tutorials\/ck-git<br><\/code><\/p>\n\n\n\n<p>This command tells Git the remote called \u201corigin\u201d should be associated with a particular URL. Git now knows where the remote version of our repository exists.<br><\/p>\n\n\n\n<p>Let\u2019s try to push our code again:<br><\/p>\n\n\n\n<p><code>git push origin master<br><\/code><\/p>\n\n\n\n<p>The Git command line successfully pushes our code to our remote repository.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The \u201cfatal: \u2018origin\u2019 does not appear to be a git repository\u201d error occurs when you try to push code to a remote Git repository without telling Git the location of the remote repository.<br><\/p>\n\n\n\n<p>To solve this error, use the git remote add command to add a remote to your project.<br><\/p>\n\n\n\n<p>Now you have the knowledge you need to fix this error like a professional programmer.<br><\/p>\n","protected":false},"excerpt":{"rendered":"By default, a Git repository is not associated with a remote repository. If you try to push changes to a remote repository without first specifying its location, you\u2019ll encounter the \u201cfatal: \u2018origin\u2019 does not appear to be a git repository\u201d error. This guide talks about why this error is raised and what it means. We\u2019ll&hellip;","protected":false},"author":240,"featured_media":14945,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[17286],"tags":[],"class_list":{"0":"post-22834","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-git"},"acf":{"post_sub_title":"","sprint_id":"","query_class":"Git","school_sft":"","parent_sft":"","school_privacy_policy":"","has_review":null,"is_sponser_post":"","is_guest_post":[]},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.4 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>\u2018origin\u2019 does not appear to be a git repository Solution | Career Karma<\/title>\n<meta name=\"description\" content=\"On Career Karma, learn the cause of and the solution to the Git fatal: \u2018origin\u2019 does not appear to be a git repository error.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/careerkarma.com\/blog\/git-fatal-origin-does-not-appear-to-be-a-git-repository\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Git fatal: \u2018origin\u2019 does not appear to be a git repository Solution\" \/>\n<meta property=\"og:description\" content=\"On Career Karma, learn the cause of and the solution to the Git fatal: \u2018origin\u2019 does not appear to be a git repository error.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/git-fatal-origin-does-not-appear-to-be-a-git-repository\/\" \/>\n<meta property=\"og:site_name\" content=\"Career Karma\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/facebook.com\/careerkarmaapp\" \/>\n<meta property=\"article:published_time\" content=\"2020-09-17T21:52:45+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T12:00:12+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/04\/nate-grant-QQ9LainS6tI-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1020\" \/>\n\t<meta property=\"og:image:height\" content=\"574\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"James Gallagher\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@career_karma\" \/>\n<meta name=\"twitter:site\" content=\"@career_karma\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"James Gallagher\" \/>\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:\\\/\\\/careerkarma.com\\\/blog\\\/git-fatal-origin-does-not-appear-to-be-a-git-repository\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-fatal-origin-does-not-appear-to-be-a-git-repository\\\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"Git fatal: \u2018origin\u2019 does not appear to be a git repository Solution\",\"datePublished\":\"2020-09-17T21:52:45+00:00\",\"dateModified\":\"2023-12-01T12:00:12+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-fatal-origin-does-not-appear-to-be-a-git-repository\\\/\"},\"wordCount\":529,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-fatal-origin-does-not-appear-to-be-a-git-repository\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/nate-grant-QQ9LainS6tI-unsplash.jpg\",\"articleSection\":[\"Git\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-fatal-origin-does-not-appear-to-be-a-git-repository\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-fatal-origin-does-not-appear-to-be-a-git-repository\\\/\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-fatal-origin-does-not-appear-to-be-a-git-repository\\\/\",\"name\":\"\u2018origin\u2019 does not appear to be a git repository Solution | Career Karma\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-fatal-origin-does-not-appear-to-be-a-git-repository\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-fatal-origin-does-not-appear-to-be-a-git-repository\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/nate-grant-QQ9LainS6tI-unsplash.jpg\",\"datePublished\":\"2020-09-17T21:52:45+00:00\",\"dateModified\":\"2023-12-01T12:00:12+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"On Career Karma, learn the cause of and the solution to the Git fatal: \u2018origin\u2019 does not appear to be a git repository error.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-fatal-origin-does-not-appear-to-be-a-git-repository\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-fatal-origin-does-not-appear-to-be-a-git-repository\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-fatal-origin-does-not-appear-to-be-a-git-repository\\\/#primaryimage\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/nate-grant-QQ9LainS6tI-unsplash.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/nate-grant-QQ9LainS6tI-unsplash.jpg\",\"width\":1020,\"height\":574},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-fatal-origin-does-not-appear-to-be-a-git-repository\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Git\",\"item\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Git fatal: \u2018origin\u2019 does not appear to be a git repository Solution\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/\",\"name\":\"Career Karma\",\"description\":\"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/e79364792443fbff794a144c67ec8e94\",\"name\":\"James Gallagher\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/01\\\/james-gallagher-150x150.jpg\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/01\\\/james-gallagher-150x150.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/01\\\/james-gallagher-150x150.jpg\",\"caption\":\"James Gallagher\"},\"description\":\"James Gallagher is a self-taught programmer and the technical content manager at Career Karma. He has experience in range of programming languages and extensive expertise in Python, HTML, CSS, and JavaScript. James has written hundreds of programming tutorials, and he frequently contributes to publications like Codecademy, Treehouse, Repl.it, Afrotech, and others.\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/author\\\/jamesgallagher\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"\u2018origin\u2019 does not appear to be a git repository Solution | Career Karma","description":"On Career Karma, learn the cause of and the solution to the Git fatal: \u2018origin\u2019 does not appear to be a git repository error.","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:\/\/careerkarma.com\/blog\/git-fatal-origin-does-not-appear-to-be-a-git-repository\/","og_locale":"en_US","og_type":"article","og_title":"Git fatal: \u2018origin\u2019 does not appear to be a git repository Solution","og_description":"On Career Karma, learn the cause of and the solution to the Git fatal: \u2018origin\u2019 does not appear to be a git repository error.","og_url":"https:\/\/careerkarma.com\/blog\/git-fatal-origin-does-not-appear-to-be-a-git-repository\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-09-17T21:52:45+00:00","article_modified_time":"2023-12-01T12:00:12+00:00","og_image":[{"width":1020,"height":574,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/04\/nate-grant-QQ9LainS6tI-unsplash.jpg","type":"image\/jpeg"}],"author":"James Gallagher","twitter_card":"summary_large_image","twitter_creator":"@career_karma","twitter_site":"@career_karma","twitter_misc":{"Written by":"James Gallagher","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/git-fatal-origin-does-not-appear-to-be-a-git-repository\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/git-fatal-origin-does-not-appear-to-be-a-git-repository\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"Git fatal: \u2018origin\u2019 does not appear to be a git repository Solution","datePublished":"2020-09-17T21:52:45+00:00","dateModified":"2023-12-01T12:00:12+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/git-fatal-origin-does-not-appear-to-be-a-git-repository\/"},"wordCount":529,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/git-fatal-origin-does-not-appear-to-be-a-git-repository\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/04\/nate-grant-QQ9LainS6tI-unsplash.jpg","articleSection":["Git"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/git-fatal-origin-does-not-appear-to-be-a-git-repository\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/git-fatal-origin-does-not-appear-to-be-a-git-repository\/","url":"https:\/\/careerkarma.com\/blog\/git-fatal-origin-does-not-appear-to-be-a-git-repository\/","name":"\u2018origin\u2019 does not appear to be a git repository Solution | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/git-fatal-origin-does-not-appear-to-be-a-git-repository\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/git-fatal-origin-does-not-appear-to-be-a-git-repository\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/04\/nate-grant-QQ9LainS6tI-unsplash.jpg","datePublished":"2020-09-17T21:52:45+00:00","dateModified":"2023-12-01T12:00:12+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"On Career Karma, learn the cause of and the solution to the Git fatal: \u2018origin\u2019 does not appear to be a git repository error.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/git-fatal-origin-does-not-appear-to-be-a-git-repository\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/git-fatal-origin-does-not-appear-to-be-a-git-repository\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/git-fatal-origin-does-not-appear-to-be-a-git-repository\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/04\/nate-grant-QQ9LainS6tI-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/04\/nate-grant-QQ9LainS6tI-unsplash.jpg","width":1020,"height":574},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/git-fatal-origin-does-not-appear-to-be-a-git-repository\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/careerkarma.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Git","item":"https:\/\/careerkarma.com\/blog\/git\/"},{"@type":"ListItem","position":3,"name":"Git fatal: \u2018origin\u2019 does not appear to be a git repository Solution"}]},{"@type":"WebSite","@id":"https:\/\/careerkarma.com\/blog\/#website","url":"https:\/\/careerkarma.com\/blog\/","name":"Career Karma","description":"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/careerkarma.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94","name":"James Gallagher","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg","caption":"James Gallagher"},"description":"James Gallagher is a self-taught programmer and the technical content manager at Career Karma. He has experience in range of programming languages and extensive expertise in Python, HTML, CSS, and JavaScript. James has written hundreds of programming tutorials, and he frequently contributes to publications like Codecademy, Treehouse, Repl.it, Afrotech, and others.","url":"https:\/\/careerkarma.com\/blog\/author\/jamesgallagher\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/22834","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/users\/240"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=22834"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/22834\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/14945"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=22834"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=22834"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=22834"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}