{"id":23038,"date":"2020-09-21T11:38:07","date_gmt":"2020-09-21T18:38:07","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=23038"},"modified":"2023-12-01T04:00:18","modified_gmt":"2023-12-01T12:00:18","slug":"git-nothing-to-commit-working-directory-clean","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/git-nothing-to-commit-working-directory-clean\/","title":{"rendered":"Git nothing to commit, working directory clean Explanation"},"content":{"rendered":"\n<p>When you have added all of the changes in a repository to a commit, the Git command line will classify your working directory as \u201cclean\u201d. You\u2019ll see this description if you run <code>git status<\/code> to check the status of your repository.<br><\/p>\n\n\n\n<p>In this guide, we\u2019re going to discuss what the \u201cnothing to commit, working directory clean\u201d message means. We\u2019ll also discuss why you see this message even when you have made changes to your local repository that have not been pushed to a remote repository.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">nothing to commit, working directory clean<\/h2>\n\n\n\n<p><a href=\"https:\/\/careerkarma.com\/blog\/what-is-git\/\">Git is a distributed version control system<\/a>. This means you can maintain multiple separate copies of a repository.<br><\/p>\n\n\n\n<p>Because multiple copies of a repository can exist, different developers can work on their own version of a repository locally. Then, when they have finished making a change, they can push their changes to the main version of the repository.<br><\/p>\n\n\n\n<p>The \u201cnothing to commit, working directory clean\u201d message tells us all of the changes we have made to a Git repository are committed. This means the current state of our project folder is exactly the same as that of the last commit.<br><\/p>\n\n\n\n<p>When you add, remove, or delete a file, this message will change. You\u2019ll see a list of the files you have changed and a description of whether you have created, modified, or deleted that file.<br><\/p>\n\n\n\n<p>Let\u2019s run the git status command on a repository to which we have made no changes:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>On branch master\nYour branch is up to date with 'origin\/master'.\n\nnothing to commit, working tree clean<\/pre><\/div>\n\n\n\n<p>The git status command tells us we are viewing the \u201cmaster\u201d branch. The command also tells us we have not made any changes to our repository since the last commit.<br><\/p>\n\n\n\n<p>If you have set up your project with a remote, you should see a message telling you whether all of the changes you have made to your repository have been pushed to the remote. This is the \u201cYour branch is up to date\u201d message above.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">nothing to commit, working directory clean Error<\/h2>\n\n\n\n<p>The \u201cnothing to commit, working directory clean\u201d message may appear in error. This happens if you have not set a branch on your repository upstream.<br><\/p>\n\n\n\n<p>Let\u2019s create a local copy of our demo Git repository, ck-git. To start, we\u2019re going to <a href=\"https:\/\/careerkarma.com\/blog\/git-init\/\">initialize a new repository<\/a>, add that repository as a remote, and <a href=\"https:\/\/careerkarma.com\/blog\/git-pull\/\">pull the contents of the repo<\/a>:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git init\ngit remote add origin https:\/\/github.com\/career-karma-tutorials\/ck-git\ngit pull origin master<\/pre><\/div>\n\n\n\n<p>These commands retrieve the code from the career-karma-tutorials\/ck-git repository on GitHub. Next, let\u2019s modify a file and add it to a commit:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>echo &quot;This project is a work in progress.&quot; &gt;&gt; README.md\ngit add README.md\ngit commit -m &quot;docs: Add work in progress notice&quot;<\/pre><\/div>\n\n\n\n<p>We have just added a line of text to the README.md file. Then, we <a href=\"https:\/\/careerkarma.com\/blog\/git-add\/\">added the README.md file into the staging area<\/a> and all the files in the staging area to a commit.<br><\/p>\n\n\n\n<p>Let\u2019s run git status to make sure our changes have been made:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>On branch master\n\nnothing to commit, working tree clean<\/pre><\/div>\n\n\n\n<p>This command tells us that our working tree is clean even though we\u2019ve made changes to our remote repository. There is no message to tell us that our local repository is different to our remote repository.<br><\/p>\n\n\n\n<p>This is because we have not told Git to compare our local repository to our remote repository. This occurred because we did not clone our repository. We initialized a new repository and pulled the contents from an existing repository to our local machine.<br><\/p>\n\n\n\n<p>We can fix this error by <a href=\"https:\/\/careerkarma.com\/blog\/git-no-upstream-branch\/\">setting an upstream remote branch<\/a>:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git branch -u origin\/master<\/pre><\/div>\n\n\n\n<p>This tells Git to compare the contents of your current branch to the \u201cmaster\u201d branch on the \u201corigin\u201d remote. Now, let\u2019s run the git status command again:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>On branch master\nYour branch is ahead of 'origin\/master' by 1 commit.\n  (use &quot;git push&quot; to publish your local commits)\n\nnothing to commit, working tree clean<\/pre><\/div>\n\n\n\n<p>The Git command line informs us that our local repository contains one more commit than our remote repository. To make this message go away, we must push our changes using the git push command:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git push<\/pre><\/div>\n\n\n\n<p>Now that we\u2019ve pushed our changes, our local and remote repositories will be the same:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>On branch master\nYour branch is up to date with 'origin\/master'.\n\nnothing to commit, working tree clean<\/pre><\/div>\n\n\n\n<p>We\u2019ve fixed the issue!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The Git \u201cnothing to commit, working directory clean\u201d message tells us that we have not made any changes to our repository since the last commit.<br><\/p>\n\n\n\n<p>If this message appears and the contents of your remote repository are different to your local repository, check to make sure you have correctly set up an upstream branch.<\/p>\n","protected":false},"excerpt":{"rendered":"When you have added all of the changes in a repository to a commit, the Git command line will classify your working directory as \u201cclean\u201d. You\u2019ll see this description if you run git status to check the status of your repository. In this guide, we\u2019re going to discuss what the \u201cnothing to commit, working directory&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-23038","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>Git nothing to commit, working directory clean Explanation | Career Karma<\/title>\n<meta name=\"description\" content=\"On Career Karma, learn the cause of and the solution to the Git nothing to commit, working directory clean 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-nothing-to-commit-working-directory-clean\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Git nothing to commit, working directory clean Explanation\" \/>\n<meta property=\"og:description\" content=\"On Career Karma, learn the cause of and the solution to the Git nothing to commit, working directory clean error.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/git-nothing-to-commit-working-directory-clean\/\" \/>\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-21T18:38:07+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T12:00:18+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=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-nothing-to-commit-working-directory-clean\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-nothing-to-commit-working-directory-clean\\\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"Git nothing to commit, working directory clean Explanation\",\"datePublished\":\"2020-09-21T18:38:07+00:00\",\"dateModified\":\"2023-12-01T12:00:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-nothing-to-commit-working-directory-clean\\\/\"},\"wordCount\":696,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-nothing-to-commit-working-directory-clean\\\/#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-nothing-to-commit-working-directory-clean\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-nothing-to-commit-working-directory-clean\\\/\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-nothing-to-commit-working-directory-clean\\\/\",\"name\":\"Git nothing to commit, working directory clean Explanation | Career Karma\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-nothing-to-commit-working-directory-clean\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-nothing-to-commit-working-directory-clean\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/nate-grant-QQ9LainS6tI-unsplash.jpg\",\"datePublished\":\"2020-09-21T18:38:07+00:00\",\"dateModified\":\"2023-12-01T12:00:18+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 nothing to commit, working directory clean error.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-nothing-to-commit-working-directory-clean\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-nothing-to-commit-working-directory-clean\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-nothing-to-commit-working-directory-clean\\\/#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-nothing-to-commit-working-directory-clean\\\/#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 nothing to commit, working directory clean Explanation\"}]},{\"@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":"Git nothing to commit, working directory clean Explanation | Career Karma","description":"On Career Karma, learn the cause of and the solution to the Git nothing to commit, working directory clean 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-nothing-to-commit-working-directory-clean\/","og_locale":"en_US","og_type":"article","og_title":"Git nothing to commit, working directory clean Explanation","og_description":"On Career Karma, learn the cause of and the solution to the Git nothing to commit, working directory clean error.","og_url":"https:\/\/careerkarma.com\/blog\/git-nothing-to-commit-working-directory-clean\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-09-21T18:38:07+00:00","article_modified_time":"2023-12-01T12:00:18+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":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/git-nothing-to-commit-working-directory-clean\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/git-nothing-to-commit-working-directory-clean\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"Git nothing to commit, working directory clean Explanation","datePublished":"2020-09-21T18:38:07+00:00","dateModified":"2023-12-01T12:00:18+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/git-nothing-to-commit-working-directory-clean\/"},"wordCount":696,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/git-nothing-to-commit-working-directory-clean\/#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-nothing-to-commit-working-directory-clean\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/git-nothing-to-commit-working-directory-clean\/","url":"https:\/\/careerkarma.com\/blog\/git-nothing-to-commit-working-directory-clean\/","name":"Git nothing to commit, working directory clean Explanation | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/git-nothing-to-commit-working-directory-clean\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/git-nothing-to-commit-working-directory-clean\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/04\/nate-grant-QQ9LainS6tI-unsplash.jpg","datePublished":"2020-09-21T18:38:07+00:00","dateModified":"2023-12-01T12:00:18+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 nothing to commit, working directory clean error.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/git-nothing-to-commit-working-directory-clean\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/git-nothing-to-commit-working-directory-clean\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/git-nothing-to-commit-working-directory-clean\/#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-nothing-to-commit-working-directory-clean\/#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 nothing to commit, working directory clean Explanation"}]},{"@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\/23038","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=23038"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/23038\/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=23038"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=23038"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=23038"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}