{"id":19689,"date":"2020-11-25T19:22:25","date_gmt":"2020-11-26T03:22:25","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=19689"},"modified":"2023-12-01T04:04:59","modified_gmt":"2023-12-01T12:04:59","slug":"git-commit-amend","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/git-commit-amend\/","title":{"rendered":"How to Use the git amend Command"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Git commit amend: A Beginner\u2019s Guide<\/h2>\n\n\n\n<p><em>The git commit &#8211;amend command lets you modify your last commit. You can change your log message and the files that appear in the commit. The old commit is replaced with a new commit which means that when you amend your old commit it will no longer be visible in the project history.<\/em><\/p>\n\n\n\n<p>Did you forget to include something in your last commit message? Did you make a typo? Did you add something into your commit message that is not relevant? Don\u2019t worry! Git has a solution for you: the <a href=\"https:\/\/careerkarma.com\/blog\/git-commit\/\">git commit<\/a> \u2013amend command.<\/p>\n\n\n\n<p>In this guide, we\u2019re going to talk about how to modify your last commit using the git commit \u2013amend command. We\u2019ll walk through an example to help you get started.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Git Commit Amend Command<\/h2>\n\n\n\n<p>The <a href=\"https:\/\/careerkarma.com\/blog\/git-commit\/\">git commit<\/a> \u2013amend command modifies your latest commit. This command lets you change files in your last commit or your commit message. Your old commit is replaced with a new commit that has its own ID.<\/p>\n\n\n\n<p>The syntax for the amend command is as follows:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git commit --amend<\/pre><\/div>\n\n\n\n<p>This command is useful because it allows you to undo changes without having to create a new commit. Creating a new commit to undo changes would make the history of a repository less clear. You\u2019d only be reverting a mistake and that does not usually need a commit of its own.<\/p>\n\n\n\n<p>Amending a commit does not just change a commit. It replaces it with a new commit which will have its own ID.&nbsp;You can only modify the last commit in your repository, which is referred to as a <a href=\"https:\/\/careerkarma.com\/blog\/what-is-a-git-head\/\">Git HEAD<\/a>.<\/p>\n\n\n\n<p>Because the old commit is replaced, you should double check to make sure that you want to amend your previous commit.<\/p>\n\n\n\n<p>The git commit \u2013amend command only works on the most recent commit. The <a href=\"https:\/\/careerkarma.com\/blog\/git-rebase\/\">git rebase command<\/a> or the <a href=\"https:\/\/careerkarma.com\/blog\/git-reset\/\">git reset command<\/a> let you rewrite history further back than the last commit. The rebase command offers an interactive rebasing environment in which to rewrite history.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Git Amend Commit Message<\/h2>\n\n\n\n<p>You can use the git commit \u2013amend command to edit a commit message. To do so, use the -m flag and specify a new commit message in quotation marks.<\/p>\n\n\n\n<p>You\u2019ve just made a typo in your last commit message. What should you do? Panic is not the right answer. Developers make this sort of mistake all the time in <a href=\"https:\/\/careerkarma.com\/blog\/what-is-git\/\">Git<\/a>. Here is a command line operation that lets us replace our last commit:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git commit --amend -m \u201cfeat: Revised commit message\u201d<\/pre><\/div>\n\n\n\n<p>This command will replace the single commit log message in your last commit with the one that you state. We use the -m flag to tell Git that we want to change a commit message.<\/p>\n\n\n\n<p>You can use this command without the -m flag. If you do, an interactive text editor will be opened up in which you can replace the message from your older commit. Save and exit the text editor and your change will be made.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Git Commit Amend: Change a File<\/h2>\n\n\n\n<p>You have just realized that your last commit is missing a crucial configuration file. Without it, the changes you have pushed will not function correctly. We can use the git commit \u2013amend command to get out of this bind and fix the issue.<\/p>\n\n\n\n<p>To change the files in a commit, first add the files you want to be included in your commit:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git add config.py<\/pre><\/div>\n\n\n\n<p>This adds the file app.py to our repository. app.py will become a committed file when we save our changes. If you want to remove a file from a commit, you can use git rm:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git rm config_old.py<\/pre><\/div>\n\n\n\n<p>Once you have made the changes to a repository, you are ready to amend your commit. You can do this by using the \u2013no-edit flag:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git commit --amend --no-edit&lt;<\/pre><\/div>\n\n\n\n<p>This command will change the files in your last commit. It will not change the message associated with the commit because we have not used the -m flag.<\/p>\n\n\n\n<p>When we run this command, config.py is added to our Git repository. config_old.py is removed from the repository. Once you have made a commit, you can push it to your remote repository using <a href=\"https:\/\/careerkarma.com\/blog\/git-push\/\">git push<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The git commit \u2013amend command lets you rewrite your most recent commit. You can change the commit message associated with the commit and the changes you made to files in that commit.<\/p>\n\n\n\n<p>Before you start amending commits, you should make sure that you do not amend public commits. Amended commits are new versions of a commit. This means that if you amend a commit, the history of your repository will change. If other developers have already started to use the code from your commit, amending it could be confusing.<\/p>\n\n\n\n<p>To learn more about working with Git, read our <a href=\"https:\/\/careerkarma.com\/blog\/what-is-git\/\">How to Learn Git guide<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"Git commit amend: A Beginner\u2019s Guide The git commit --amend command lets you modify your last commit. You can change your log message and the files that appear in the commit. The old commit is replaced with a new commit which means that when you amend your old commit it will no longer be visible&hellip;","protected":false},"author":240,"featured_media":20177,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[17286],"tags":[],"class_list":{"0":"post-19689","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 commit amend: A Beginner\u2019s Guide | Career Karma<\/title>\n<meta name=\"description\" content=\"The git commit --amend command allows you to amend your last commit. On Career Karma, learn how to use the git amend command.\" \/>\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-commit-amend\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Use the git amend Command\" \/>\n<meta property=\"og:description\" content=\"The git commit --amend command allows you to amend your last commit. On Career Karma, learn how to use the git amend command.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/git-commit-amend\/\" \/>\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-11-26T03:22:25+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T12:04:59+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/arnold-francisca-OQ2B6W2CQ_E-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"800\" \/>\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-commit-amend\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-commit-amend\\\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"How to Use the git amend Command\",\"datePublished\":\"2020-11-26T03:22:25+00:00\",\"dateModified\":\"2023-12-01T12:04:59+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-commit-amend\\\/\"},\"wordCount\":805,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-commit-amend\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/07\\\/arnold-francisca-OQ2B6W2CQ_E-unsplash.jpg\",\"articleSection\":[\"Git\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-commit-amend\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-commit-amend\\\/\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-commit-amend\\\/\",\"name\":\"git commit amend: A Beginner\u2019s Guide | Career Karma\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-commit-amend\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-commit-amend\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/07\\\/arnold-francisca-OQ2B6W2CQ_E-unsplash.jpg\",\"datePublished\":\"2020-11-26T03:22:25+00:00\",\"dateModified\":\"2023-12-01T12:04:59+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"The git commit --amend command allows you to amend your last commit. On Career Karma, learn how to use the git amend command.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-commit-amend\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-commit-amend\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-commit-amend\\\/#primaryimage\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/07\\\/arnold-francisca-OQ2B6W2CQ_E-unsplash.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/07\\\/arnold-francisca-OQ2B6W2CQ_E-unsplash.jpg\",\"width\":1200,\"height\":800},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-commit-amend\\\/#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\":\"How to Use the git amend Command\"}]},{\"@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 commit amend: A Beginner\u2019s Guide | Career Karma","description":"The git commit --amend command allows you to amend your last commit. On Career Karma, learn how to use the git amend command.","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-commit-amend\/","og_locale":"en_US","og_type":"article","og_title":"How to Use the git amend Command","og_description":"The git commit --amend command allows you to amend your last commit. On Career Karma, learn how to use the git amend command.","og_url":"https:\/\/careerkarma.com\/blog\/git-commit-amend\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-11-26T03:22:25+00:00","article_modified_time":"2023-12-01T12:04:59+00:00","og_image":[{"width":1200,"height":800,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/arnold-francisca-OQ2B6W2CQ_E-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-commit-amend\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/git-commit-amend\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"How to Use the git amend Command","datePublished":"2020-11-26T03:22:25+00:00","dateModified":"2023-12-01T12:04:59+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/git-commit-amend\/"},"wordCount":805,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/git-commit-amend\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/arnold-francisca-OQ2B6W2CQ_E-unsplash.jpg","articleSection":["Git"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/git-commit-amend\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/git-commit-amend\/","url":"https:\/\/careerkarma.com\/blog\/git-commit-amend\/","name":"git commit amend: A Beginner\u2019s Guide | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/git-commit-amend\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/git-commit-amend\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/arnold-francisca-OQ2B6W2CQ_E-unsplash.jpg","datePublished":"2020-11-26T03:22:25+00:00","dateModified":"2023-12-01T12:04:59+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"The git commit --amend command allows you to amend your last commit. On Career Karma, learn how to use the git amend command.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/git-commit-amend\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/git-commit-amend\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/git-commit-amend\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/arnold-francisca-OQ2B6W2CQ_E-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/arnold-francisca-OQ2B6W2CQ_E-unsplash.jpg","width":1200,"height":800},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/git-commit-amend\/#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":"How to Use the git amend Command"}]},{"@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\/19689","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=19689"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/19689\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/20177"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=19689"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=19689"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=19689"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}