{"id":25333,"date":"2020-11-09T05:09:31","date_gmt":"2020-11-09T13:09:31","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=25333"},"modified":"2020-11-10T06:10:28","modified_gmt":"2020-11-10T14:10:28","slug":"updates-were-rejected-because-the-remote-contains-work-that-you-do-not-have-locally","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/updates-were-rejected-because-the-remote-contains-work-that-you-do-not-have-locally\/","title":{"rendered":"How to Fix the Remote \u2018updates were rejected\u2019 Git Error"},"content":{"rendered":"\n<p>The Git error \u201cupdates were rejected because the remote contains work that you do not have locally\u201d is triggered when you initialize a new Github repo with a readme file or a license. This article dives into the solutions to this error so new updates from local machines can be pushed into the Github repository.<br><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Possible Solutions<\/h2>\n\n\n\n<ol class=\"wp-block-list\"><li>Pull and Push<\/li><\/ol>\n\n\n\n<p>Sometimes a simple pull from the origin repo branch to the local project to obtain the missing files before a push is all one needs to fix the error. Assuming the branch is the master branch, the below commands will suffice.<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git pull origin master\ngit push origin master\n<\/pre><\/div>\n\n\n\n<ol class=\"wp-block-list\"><li>Remote Add, Pull, and Push<\/li><\/ol>\n\n\n\n<p>To communicate to outside repositories, Git uses the word \u201cremote\u201d. By adding an address we are telling git how to reach a certain repo.<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git remote add origin &lt;input github url&gt;\ngit pull origin master --allow-unrelated-histories\ngit push origin master\n<\/pre><\/div>\n\n\n\n<p>Notice how we are pulling from master in the second command. This can be done only if you have already initialized a repo in github and have committed changes locally. If not, we can replace the second command with <code>git pull origin master<\/code>.<br><\/p>\n\n\n\n<p>The <code>git pull origin master --allow-unrelated-histories<\/code> command is there if an initialized repo already exists because by default we cannot merge the histories of projects that did not initiate together. This command overrides this protected default.<br><\/p>\n\n\n\n<ol class=\"wp-block-list\"><li>Pull, Push, and Force Commit<\/li><\/ol>\n\n\n\n<p>The common <code>git push -f <\/code>is short for <code>git push --force<\/code>. This command is used to force Git to push a commit when it would normally otherwise throw an error, an error that could be related to two different projects without the same anester, or projects that began their lives independently from each other. Use caution as this command also overrides the remote history with on a local repo.<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git pull origin master\ngit push -f origin master\n<\/pre><\/div>\n\n\n\n<ol class=\"wp-block-list\"><li>Combining Solutions 2 and 3<\/li><\/ol>\n\n\n\n<p>If none of the solutions above have worked for you yet, try combining both <code>git pull --allow-unrelated-histories<\/code> and <code>git push -f origin master <\/code>in the command line.<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git pull --allow-unrelated-histories\ngit push -f origin master\n<\/pre><\/div>\n\n\n\n<p><\/p>\n\n\n\n<ol class=\"wp-block-list\"><li>Fetching, Sending, and Merging&nbsp;<\/li><\/ol>\n\n\n\n<p>The final possible solution is to fetch from the remote, send from the local, and attempt to merge the two.<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git fetch\ngit branch --set-upstream-to origin\/master\ngit merge --allow-unrelated-histories\n<\/pre><\/div>\n\n\n\n<p>If an error occurs after <code>git fetch<\/code>, try appending the repo name or url to the command.&nbsp;<br><\/p>\n\n\n\n<p>The command <code>git branch --set-upstream-to<\/code> sets the remote branch for the local branch, allowing for future fetch, pulls, pushes and merges. In lieu of set upstream, we can also use the command <code>git push -u origin<\/code> where the <code>-u <\/code>also means to send upstream.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The Git error \u201cupdates were rejected because the remote contains work that you do not have locally\u201d is triggered when we initialize a new Github repo with a readme file or a license. Errors like this are also common when trying to get to repositories who began their lives independently, to communicate with each other. Using a few commands to help override this issue can help the local and remote repos communicate.<br><\/p>\n","protected":false},"excerpt":{"rendered":"The Git error \u201cupdates were rejected because the remote contains work that you do not have locally\u201d is triggered when you initialize a new Github repo with a readme file or a license. This article dives into the solutions to this error so new updates from local machines can be pushed into the Github repository.&hellip;","protected":false},"author":91,"featured_media":25334,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[17286],"tags":[],"class_list":{"0":"post-25333","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>How to Fix the Remote \u2018updates were rejected\u2019 Git Error | Career Karma<\/title>\n<meta name=\"description\" content=\"Errors like this are also common when trying to get to repositories who began their lives independently, to communicate with each other. Find how you can solve this issue with this article by Career Karma.\" \/>\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\/updates-were-rejected-because-the-remote-contains-work-that-you-do-not-have-locally\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Fix the Remote \u2018updates were rejected\u2019 Git Error\" \/>\n<meta property=\"og:description\" content=\"Errors like this are also common when trying to get to repositories who began their lives independently, to communicate with each other. Find how you can solve this issue with this article by Career Karma.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/updates-were-rejected-because-the-remote-contains-work-that-you-do-not-have-locally\/\" \/>\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-09T13:09:31+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-11-10T14:10:28+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/11\/xps-pduutGbL2-M-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"668\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Kelly M.\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/misskellymore\" \/>\n<meta name=\"twitter:site\" content=\"@career_karma\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kelly M.\" \/>\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\\\/updates-were-rejected-because-the-remote-contains-work-that-you-do-not-have-locally\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/updates-were-rejected-because-the-remote-contains-work-that-you-do-not-have-locally\\\/\"},\"author\":{\"name\":\"Kelly M.\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/1cc6a89c78a56b632b6032b3b040c4fb\"},\"headline\":\"How to Fix the Remote \u2018updates were rejected\u2019 Git Error\",\"datePublished\":\"2020-11-09T13:09:31+00:00\",\"dateModified\":\"2020-11-10T14:10:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/updates-were-rejected-because-the-remote-contains-work-that-you-do-not-have-locally\\\/\"},\"wordCount\":450,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/updates-were-rejected-because-the-remote-contains-work-that-you-do-not-have-locally\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/xps-pduutGbL2-M-unsplash.jpg\",\"articleSection\":[\"Git\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/updates-were-rejected-because-the-remote-contains-work-that-you-do-not-have-locally\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/updates-were-rejected-because-the-remote-contains-work-that-you-do-not-have-locally\\\/\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/updates-were-rejected-because-the-remote-contains-work-that-you-do-not-have-locally\\\/\",\"name\":\"How to Fix the Remote \u2018updates were rejected\u2019 Git Error | Career Karma\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/updates-were-rejected-because-the-remote-contains-work-that-you-do-not-have-locally\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/updates-were-rejected-because-the-remote-contains-work-that-you-do-not-have-locally\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/xps-pduutGbL2-M-unsplash.jpg\",\"datePublished\":\"2020-11-09T13:09:31+00:00\",\"dateModified\":\"2020-11-10T14:10:28+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/1cc6a89c78a56b632b6032b3b040c4fb\"},\"description\":\"Errors like this are also common when trying to get to repositories who began their lives independently, to communicate with each other. Find how you can solve this issue with this article by Career Karma.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/updates-were-rejected-because-the-remote-contains-work-that-you-do-not-have-locally\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/updates-were-rejected-because-the-remote-contains-work-that-you-do-not-have-locally\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/updates-were-rejected-because-the-remote-contains-work-that-you-do-not-have-locally\\\/#primaryimage\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/xps-pduutGbL2-M-unsplash.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/xps-pduutGbL2-M-unsplash.jpg\",\"width\":1000,\"height\":668},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/updates-were-rejected-because-the-remote-contains-work-that-you-do-not-have-locally\\\/#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 Fix the Remote \u2018updates were rejected\u2019 Git Error\"}]},{\"@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\\\/1cc6a89c78a56b632b6032b3b040c4fb\",\"name\":\"Kelly M.\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/kelly-moreira-150x150.jpeg\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/kelly-moreira-150x150.jpeg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/kelly-moreira-150x150.jpeg\",\"caption\":\"Kelly M.\"},\"description\":\"Kelly is a technical writer at Career Karma, where she writes tutorials on a variety of topics. She attended the University of Central Florida, earning a BS in Business Administration. Shortly after, she attended Lambda School, specializing in full stack web development and computer science. Before joining Career Karma in September 2020, Kelly worked as a Developer Advocate at Dwolla and as a team lead at Lambda School. Her technical writing can be found on Codecademy, gitConnected, and JavaScript in Plain English.\",\"sameAs\":[\"https:\\\/\\\/www.linkedin.com\\\/in\\\/kemore\\\/\",\"https:\\\/\\\/x.com\\\/https:\\\/\\\/twitter.com\\\/misskellymore\"],\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/author\\\/kelly-m\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Fix the Remote \u2018updates were rejected\u2019 Git Error | Career Karma","description":"Errors like this are also common when trying to get to repositories who began their lives independently, to communicate with each other. Find how you can solve this issue with this article by Career Karma.","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\/updates-were-rejected-because-the-remote-contains-work-that-you-do-not-have-locally\/","og_locale":"en_US","og_type":"article","og_title":"How to Fix the Remote \u2018updates were rejected\u2019 Git Error","og_description":"Errors like this are also common when trying to get to repositories who began their lives independently, to communicate with each other. Find how you can solve this issue with this article by Career Karma.","og_url":"https:\/\/careerkarma.com\/blog\/updates-were-rejected-because-the-remote-contains-work-that-you-do-not-have-locally\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-11-09T13:09:31+00:00","article_modified_time":"2020-11-10T14:10:28+00:00","og_image":[{"width":1000,"height":668,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/11\/xps-pduutGbL2-M-unsplash.jpg","type":"image\/jpeg"}],"author":"Kelly M.","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/misskellymore","twitter_site":"@career_karma","twitter_misc":{"Written by":"Kelly M.","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/updates-were-rejected-because-the-remote-contains-work-that-you-do-not-have-locally\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/updates-were-rejected-because-the-remote-contains-work-that-you-do-not-have-locally\/"},"author":{"name":"Kelly M.","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/1cc6a89c78a56b632b6032b3b040c4fb"},"headline":"How to Fix the Remote \u2018updates were rejected\u2019 Git Error","datePublished":"2020-11-09T13:09:31+00:00","dateModified":"2020-11-10T14:10:28+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/updates-were-rejected-because-the-remote-contains-work-that-you-do-not-have-locally\/"},"wordCount":450,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/updates-were-rejected-because-the-remote-contains-work-that-you-do-not-have-locally\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/11\/xps-pduutGbL2-M-unsplash.jpg","articleSection":["Git"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/updates-were-rejected-because-the-remote-contains-work-that-you-do-not-have-locally\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/updates-were-rejected-because-the-remote-contains-work-that-you-do-not-have-locally\/","url":"https:\/\/careerkarma.com\/blog\/updates-were-rejected-because-the-remote-contains-work-that-you-do-not-have-locally\/","name":"How to Fix the Remote \u2018updates were rejected\u2019 Git Error | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/updates-were-rejected-because-the-remote-contains-work-that-you-do-not-have-locally\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/updates-were-rejected-because-the-remote-contains-work-that-you-do-not-have-locally\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/11\/xps-pduutGbL2-M-unsplash.jpg","datePublished":"2020-11-09T13:09:31+00:00","dateModified":"2020-11-10T14:10:28+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/1cc6a89c78a56b632b6032b3b040c4fb"},"description":"Errors like this are also common when trying to get to repositories who began their lives independently, to communicate with each other. Find how you can solve this issue with this article by Career Karma.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/updates-were-rejected-because-the-remote-contains-work-that-you-do-not-have-locally\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/updates-were-rejected-because-the-remote-contains-work-that-you-do-not-have-locally\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/updates-were-rejected-because-the-remote-contains-work-that-you-do-not-have-locally\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/11\/xps-pduutGbL2-M-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/11\/xps-pduutGbL2-M-unsplash.jpg","width":1000,"height":668},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/updates-were-rejected-because-the-remote-contains-work-that-you-do-not-have-locally\/#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 Fix the Remote \u2018updates were rejected\u2019 Git Error"}]},{"@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\/1cc6a89c78a56b632b6032b3b040c4fb","name":"Kelly M.","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/11\/kelly-moreira-150x150.jpeg","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/11\/kelly-moreira-150x150.jpeg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/11\/kelly-moreira-150x150.jpeg","caption":"Kelly M."},"description":"Kelly is a technical writer at Career Karma, where she writes tutorials on a variety of topics. She attended the University of Central Florida, earning a BS in Business Administration. Shortly after, she attended Lambda School, specializing in full stack web development and computer science. Before joining Career Karma in September 2020, Kelly worked as a Developer Advocate at Dwolla and as a team lead at Lambda School. Her technical writing can be found on Codecademy, gitConnected, and JavaScript in Plain English.","sameAs":["https:\/\/www.linkedin.com\/in\/kemore\/","https:\/\/x.com\/https:\/\/twitter.com\/misskellymore"],"url":"https:\/\/careerkarma.com\/blog\/author\/kelly-m\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/25333","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\/91"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=25333"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/25333\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/25334"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=25333"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=25333"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=25333"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}