{"id":23837,"date":"2020-12-22T12:12:54","date_gmt":"2020-12-22T20:12:54","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=23837"},"modified":"2023-12-01T04:06:22","modified_gmt":"2023-12-01T12:06:22","slug":"git-clone-specific-branch","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/git-clone-specific-branch\/","title":{"rendered":"Git Clone Specific Branch: A How-To Guide"},"content":{"rendered":"\n<p><em>The git clone &#8211;single-branch &#8211;branch command clones a specific branch. This command lets you copy the contents of a repository without downloading all the branches on the repository. It is useful if a repository is large and you only want to download the code you will use.<\/em><\/p>\n\n\n\n<p>By default, the git clone command duplicates all the branches from a <a href=\"https:\/\/careerkarma.com\/blog\/what-is-git\/\">Git repository<\/a>. To clone only a specific branch, you must use the \u2013single-branch flag with the git commit command.<\/p>\n\n\n\n<p>In this guide, we discuss how to clone a specific branch using Git using the git clone command. We walk through an example to help you reinforce your learning.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What is Cloning?<\/h2>\n\n\n\n<p>Cloning lets you save a copy of a repository hosted elsewhere onto your local machine. You can clone a repository using the git clone command.\n\n<\/p>\n\n\n\n<p>The <a href=\"https:\/\/careerkarma.com\/blog\/git-clone\/\">git clone command<\/a> means that a Git version control server does not need to provide a web interface. You can download a copy of a Git repository from the command line.<\/p>\n\n\n\n<p>Cloning a specific branch is a common way to reduce the impact a repository will have on your available disk space. This is because you will not clone all the branches on the project. You can always download a branch later if you discover you need one you have not downloaded.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Git Clone a Specific Branch<\/h2>\n\n\n\n<p>The git clone &#8211;single-branch &#8211;branch command clones a specific branch from a Git repository. Specify the name of the branch you want to clone after the &#8211;branch command. You can always download any other branches you need after you have cloned the repository.<\/p>\n\n\n\n<p>You can limit the branches the clone command retrieves using the \u2013single-branch option:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git clone --single-branch --branch &amp;lt;branch-name&gt; &amp;lt;url&gt;<\/pre><\/div>\n\n\n\n<p>The &lt;branch-name&gt; denotes where you should specify the name of the branch you want to clone. The branch you clone should exist otherwise this command will return an error. &lt;url&gt; denotes the URL of the repository from which you want to clone a branch.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Git Clone a Specific Branch: Example<\/h2>\n\n\n\n<p>We have a repository called ck-git. This repository has two branches: master and dev. We only want to retrieve the master branch because we do not plan on working with the dev branch.<\/p>\n\n\n\n<p>To retrieve only the master branch, we\u2019re going to use the \u2013single-branch option with the git clone command:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git clone --single-branch --branch master https:\/\/github.com\/career-karma-tutorials\/ck-git<\/pre><\/div>\n\n\n\n<p>After the \u2013single-branch flag, we have specified a value for the \u2013branch flag. This is where we tell Git what branch to clone. Next, we specify the URL of the repository we want to clone, like we would with any git clone command.\n\n<\/p>\n\n\n\n<p>Let\u2019s see what happens when we run our command:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>Cloning into 'ck-git'...\nremote: Enumerating objects: 37, done.\n...\nUnpacking objects: 100% (37\/37), done.<\/pre><\/div>\n\n\n\n<p>The git clone command has copied the ck-git repository to our local machine. The command has only cloned the \u201cmaster\u201d branch because we used the \u2013single-branch flag.\n\n<\/p>\n\n\n\n<p>We can verify that only the \u201cmaster\u201d branch was cloned by navigating into our new project folder and executing the <a href=\"https:\/\/careerkarma.com\/blog\/git-branch\/\">git branch command<\/a>:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>cd ck-git\/\ngit branch<\/pre><\/div>\n\n\n\n<p>The git branch command lists all of the branches that we have stored locally in our repository:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>* master<\/pre><\/div>\n\n\n\n<p>Only one branch has been cloned. This is the master branch.&nbsp; <\/p>\n\n\n\n<p>You must specify the \u2013single-branch flag if you want to clone a single branch. The \u2013branch flag alone specifies the branch you want to check out when you navigate into a repository. A clone operation with only the \u2013branch flag still fetches all the branches in a repository.\n\n<\/p>\n\n\n\n<p>The \u2013single-branch flag is supported from Git version 1.7.10 and in future versions.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Fetch a Remote Branch<\/h2>\n\n\n\n<p>Because we have only downloaded one branch, we cannot see the code on other branches in our project.<\/p>\n\n\n\n<p>We have just realized we also need a copy of the &#8220;dev&#8221; branch. This is not a problem because we can fetch remote branches after initially cloning our repository. We can retrieve the &#8220;dev&#8221; branch using the <a href=\"https:\/\/careerkarma.com\/blog\/git-checkout\/\">git checkout command<\/a>:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git checkout --track origin\/dev<\/pre><\/div>\n\n\n\n<p>This command will retrieve the dev branch on our \u201corigin\u201d. The \u201corigin\u201d refers to the remote repository with which our repository is associated.\n\n<\/p>\n\n\n\n<p>The \u201cdev\u201d branch will be saved to a local branch. Then, our <a href=\"https:\/\/careerkarma.com\/blog\/what-is-a-git-head\/\">Git HEAD<\/a> will change to the \u201cdev\u201d branch. This means we\u2019ll move from viewing whatever branch we were on to the \u201cdev\u201d branch.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>You can clone a specific branch from a Git repository using the git clone &#8211;single-branch &#8211;branch command. This command retrieves all the files and metadata associated with one branch. To retrieve other branches, you\u2019ll need to fetch them later on.<\/p>\n\n\n\n<p>Do you want to learn more about Git? Check out our <a href=\"https:\/\/careerkarma.com\/blog\/what-is-git\/\">How to Learn Git guide<\/a>. In this guide, you&#8217;ll find a list of top online learning resources, courses, and books. You&#8217;ll also find expert advice on how can go from a beginner Git user to being an expert.<\/p>\n","protected":false},"excerpt":{"rendered":"The git clone --single-branch --branch command clones a specific branch. This command lets you copy the contents of a repository without downloading all the branches on the repository. It is useful if a repository is large and you only want to download the code you will use. By default, the git clone command duplicates all&hellip;","protected":false},"author":240,"featured_media":23838,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[17286],"tags":[],"class_list":{"0":"post-23837","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.0 (Yoast SEO v27.0) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Git Clone Specific Branch: A How-To Guide | Career Karma<\/title>\n<meta name=\"description\" content=\"On Career Karma, learn how to clone a specific branch from a Git repository using the git clone --single-branch 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-clone-specific-branch\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Git Clone Specific Branch: A How-To Guide\" \/>\n<meta property=\"og:description\" content=\"On Career Karma, learn how to clone a specific branch from a Git repository using the git clone --single-branch command.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/git-clone-specific-branch\/\" \/>\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-12-22T20:12:54+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T12:06:22+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/10\/christina-wocintechchat-com-dKBTFoarrOU-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1020\" \/>\n\t<meta property=\"og:image:height\" content=\"681\" \/>\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-clone-specific-branch\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/git-clone-specific-branch\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"Git Clone Specific Branch: A How-To Guide\",\"datePublished\":\"2020-12-22T20:12:54+00:00\",\"dateModified\":\"2023-12-01T12:06:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/git-clone-specific-branch\/\"},\"wordCount\":798,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/git-clone-specific-branch\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/10\/christina-wocintechchat-com-dKBTFoarrOU-unsplash.jpg\",\"articleSection\":[\"Git\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/git-clone-specific-branch\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/git-clone-specific-branch\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/git-clone-specific-branch\/\",\"name\":\"Git Clone Specific Branch: A How-To Guide | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/git-clone-specific-branch\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/git-clone-specific-branch\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/10\/christina-wocintechchat-com-dKBTFoarrOU-unsplash.jpg\",\"datePublished\":\"2020-12-22T20:12:54+00:00\",\"dateModified\":\"2023-12-01T12:06:22+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"On Career Karma, learn how to clone a specific branch from a Git repository using the git clone --single-branch command.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/git-clone-specific-branch\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/git-clone-specific-branch\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/git-clone-specific-branch\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/10\/christina-wocintechchat-com-dKBTFoarrOU-unsplash.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/10\/christina-wocintechchat-com-dKBTFoarrOU-unsplash.jpg\",\"width\":1020,\"height\":681},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/git-clone-specific-branch\/#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 Clone Specific Branch: A How-To Guide\"}]},{\"@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\/#\/schema\/person\/image\/\",\"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 Clone Specific Branch: A How-To Guide | Career Karma","description":"On Career Karma, learn how to clone a specific branch from a Git repository using the git clone --single-branch 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-clone-specific-branch\/","og_locale":"en_US","og_type":"article","og_title":"Git Clone Specific Branch: A How-To Guide","og_description":"On Career Karma, learn how to clone a specific branch from a Git repository using the git clone --single-branch command.","og_url":"https:\/\/careerkarma.com\/blog\/git-clone-specific-branch\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-12-22T20:12:54+00:00","article_modified_time":"2023-12-01T12:06:22+00:00","og_image":[{"width":1020,"height":681,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/10\/christina-wocintechchat-com-dKBTFoarrOU-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-clone-specific-branch\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/git-clone-specific-branch\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"Git Clone Specific Branch: A How-To Guide","datePublished":"2020-12-22T20:12:54+00:00","dateModified":"2023-12-01T12:06:22+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/git-clone-specific-branch\/"},"wordCount":798,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/git-clone-specific-branch\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/10\/christina-wocintechchat-com-dKBTFoarrOU-unsplash.jpg","articleSection":["Git"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/git-clone-specific-branch\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/git-clone-specific-branch\/","url":"https:\/\/careerkarma.com\/blog\/git-clone-specific-branch\/","name":"Git Clone Specific Branch: A How-To Guide | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/git-clone-specific-branch\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/git-clone-specific-branch\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/10\/christina-wocintechchat-com-dKBTFoarrOU-unsplash.jpg","datePublished":"2020-12-22T20:12:54+00:00","dateModified":"2023-12-01T12:06:22+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"On Career Karma, learn how to clone a specific branch from a Git repository using the git clone --single-branch command.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/git-clone-specific-branch\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/git-clone-specific-branch\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/git-clone-specific-branch\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/10\/christina-wocintechchat-com-dKBTFoarrOU-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/10\/christina-wocintechchat-com-dKBTFoarrOU-unsplash.jpg","width":1020,"height":681},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/git-clone-specific-branch\/#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 Clone Specific Branch: A How-To Guide"}]},{"@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\/#\/schema\/person\/image\/","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\/23837","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=23837"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/23837\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/23838"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=23837"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=23837"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=23837"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}