{"id":30114,"date":"2013-07-11T16:03:01","date_gmt":"2013-07-11T23:03:01","guid":{"rendered":"https:\/\/github.blog\/\/2013-07-11-github-flow-in-the-browser\/"},"modified":"2024-07-23T09:28:52","modified_gmt":"2024-07-23T16:28:52","slug":"github-flow-in-the-browser","status":"publish","type":"post","link":"https:\/\/github.blog\/developer-skills\/github\/github-flow-in-the-browser\/","title":{"rendered":"GitHub Flow in the Browser"},"content":{"rendered":"<p>Now that you can<br \/>\n<a href=\"https:\/\/github.com\/blog\/1545-deleting-files-on-github\">delete files directly on GitHub<\/a><br \/>\nwe\u2019ve reached a very exciting milestone\u2014the entire GitHub Flow\u2122 is now possible<br \/>\nusing nothing but a web browser.<\/p>\n<h2 id=\"what-is-github-flow\"><a class=\"heading-link\" href=\"#what-is-github-flow\">What is GitHub Flow?<span class=\"heading-hash pl-2 text-italic text-bold\" aria-hidden=\"true\"><\/span><\/a><\/h2>\n<p>A little while ago our very own <a href=\"https:\/\/github.com\/schacon\">@schacon<\/a> wrote<br \/>\n<a href=\"http:\/\/scottchacon.com\/2011\/08\/31\/github-flow.html\">an article<\/a> outlining the<br \/>\nworkflow we use here at GitHub to collaborate using Git. It\u2019s a deceptively<br \/>\nsimple workflow, but it works brilliantly for us across a huge range of<br \/>\nprojects, and has adapted extremely well as our team has grown from<br \/>\nbeing only a handful of people to our current size of <a href=\"https:\/\/github.com\/about\/team\">183 GitHubbers<\/a>.<\/p>\n<p>Since we use this workflow every day ourselves, we wanted to bring as many<br \/>\nparts of the workflow to our web-based interface as possible. Here\u2019s a quick<br \/>\noutline of how the GitHub Flow works using just a browser:<\/p>\n<ol>\n<li><a href=\"https:\/\/github.com\/blog\/1377-create-and-delete-branches\">Create a branch<\/a> right from the repository.<\/li>\n<li><a href=\"https:\/\/github.com\/blog\/1327-creating-files-on-github\">Create<\/a>,<br \/>\n<a href=\"https:\/\/github.com\/blog\/905-edit-like-an-ace\">edit<\/a>,<br \/>\nand <a href=\"https:\/\/github.com\/blog\/1545-deleting-files-on-github\">delete<\/a> files,<br \/>\n<a href=\"https:\/\/github.com\/blog\/1436-moving-and-renaming-files-on-github\">rename them, or move them around<\/a>.<\/li>\n<li><a href=\"https:\/\/help.github.com\/articles\/using-pull-requests\">Send a pull request<\/a> from your branch with your changes to kick off a discussion.<\/li>\n<li>Continue making changes on your branch as needed, updating the pull request automatically.<\/li>\n<li>Once the branch is ready to go, the pull request can be <a href=\"https:\/\/help.github.com\/articles\/merging-a-pull-request\">merged using the big green button<\/a>.<\/li>\n<li>Branches can then be <a href=\"https:\/\/github.com\/blog\/1335-tidying-up-after-pull-requests\">tidied up<\/a> using the delete buttons in the pull request, or on the branches page.<\/li>\n<li>Repeat.<\/li>\n<\/ol>\n<p>Even before some of these steps were possible in the browser, this simple<br \/>\nworkflow made it possible for us to<br \/>\n<a href=\"https:\/\/github.com\/blog\/1271-how-we-ship-github-for-windows\">iterate extremely quickly<\/a>,<br \/>\n<a href=\"https:\/\/github.com\/blog\/1241-deploying-at-github\">deploy dozens of times each day<\/a>,<br \/>\nand address critical issues with minimal delay.<br \/>\nProbably the most compelling aspect of GitHub Flow however is that<br \/>\nthere is no complicated branching model to have to wrap your head around.<\/p>\n<p>Now that this workflow is available entirely via the web interface though,<br \/>\na <em>whole new<\/em> set of benefits start to emerge. Let\u2019s dive into a few of them.<\/p>\n<h3 id=\"lowering-barriers-to-collaboration\"><a class=\"heading-link\" href=\"#lowering-barriers-to-collaboration\">Lowering barriers to collaboration<span class=\"heading-hash pl-2 text-italic text-bold\" aria-hidden=\"true\"><\/span><\/a><\/h3>\n<p>Perhaps the most interesting consequence of having these tools available in the<br \/>\nbrowser is that people don\u2019t have to interact with Git or the command-line at<br \/>\nall\u2014let alone <em>understand<\/em> them\u2014in order to contribute to projects in meaningful ways.<br \/>\nThis makes for a much easier learning curve for anyone new to Git and GitHub, whether<br \/>\nthey\u2019re non-technical team members, or experienced developers learning something new.<\/p>\n<h3 id=\"lowering-barriers-to-learning\"><a class=\"heading-link\" href=\"#lowering-barriers-to-learning\">Lowering barriers to learning<span class=\"heading-hash pl-2 text-italic text-bold\" aria-hidden=\"true\"><\/span><\/a><\/h3>\n<p>These web-based workflows have been especially helpful for our <a href=\"http:\/\/training.github.com\/\">training team<\/a><br \/>\ntoo. For some classes they\u2019ve been able to have people begin learning the<br \/>\nbasic concepts of Git and GitHub using just the browser, saving students the<br \/>\ncomplexity of installing Git and learning their way around the terminal commands until<br \/>\n<em>after<\/em> they\u2019ve got their heads around the fundamental ideas. When a browser is all<br \/>\nyou need, hallway demos and super-short classes can also more effectively convey the<br \/>\nGitHub Flow to people in less time, and without the distractions of preparing<br \/>\ncomputers with all the necessary software.<\/p>\n<h3 id=\"less-disruptive-workflows\"><a class=\"heading-link\" href=\"#less-disruptive-workflows\">Less disruptive workflows<span class=\"heading-hash pl-2 text-italic text-bold\" aria-hidden=\"true\"><\/span><\/a><\/h3>\n<p>Even if you are a command-line wizard, there are always times when you just need<br \/>\nto make a quick tweak to a project. Even if it\u2019s just a single <del>type<\/del>typo,<br \/>\ndoing this in the terminal requires a <em>crazy<\/em> number of steps. So now, instead of:<\/p>\n<ul>\n<li>Switching contexts from your browser into your terminal.<\/li>\n<li>Pulling down the code to work on.<\/li>\n<li>Making the change.<\/li>\n<li><em>Staging<\/em> the change.<\/li>\n<li><strong>Committing<\/strong> the change.<\/li>\n<li><strong>_Pushing<\/strong>_ the change.<\/li>\n<\/ul>\n<p>\u2026you can simply make the change right there without leaving your browser, saving you<br \/>\ntime and maintaining your <a href=\"https:\/\/api.github.com\/zen\">zen<\/a>-like frame of mind. What\u2019s more, if you have any kind<br \/>\nof continuous integration server set up to integrate with our <a href=\"https:\/\/github.com\/blog\/1227-commit-status-api\">Status API<\/a>,<br \/>\nyou\u2019ll even see that your typo fix built successfully and is ready to go!<\/p>\n<h3 id=\"writing-documentation\"><a class=\"heading-link\" href=\"#writing-documentation\">Writing documentation<span class=\"heading-hash pl-2 text-italic text-bold\" aria-hidden=\"true\"><\/span><\/a><\/h3>\n<p>When editing <a href=\"https:\/\/help.github.com\/articles\/github-flavored-markdown\">Markdown<\/a><br \/>\nfiles in repositories, being able to quickly preview how your<br \/>\nchange will look before you commit is very powerful. Combining that with things like<br \/>\nthe ability to easily create <a href=\"https:\/\/github.com\/blog\/1395-relative-links-in-markup-files\">relative links between Markdown documents<\/a>,<br \/>\nand the availability of <a href=\"https:\/\/github.com\/blog\/1379-zen-writing-mode\">fullscreen zen mode<\/a><br \/>\nfor enhanced focus when composing content which isn\u2019t code, the end result is a set<br \/>\nof tools which make creating and maintaining documentation a real pleasure indeed.<\/p>\n<h3 id=\"working-with-github-pages-websites\"><a class=\"heading-link\" href=\"#working-with-github-pages-websites\">Working with GitHub Pages websites<span class=\"heading-hash pl-2 text-italic text-bold\" aria-hidden=\"true\"><\/span><\/a><\/h3>\n<p>For projects that make use of <a href=\"http:\/\/pages.github.com\/\">GitHub Pages<\/a> for their websites, tasks like<br \/>\nwriting new blog posts, or adding pages to an existing site are incredibly simple now<br \/>\nthat these workflows are possible in the browser. Whether you use <a href=\"http:\/\/jekyllrb.com\">Jekyll<\/a><br \/>\nor just regular static HTML for your GitHub Pages site, these new workflows mean that<br \/>\nyou\u2019re able to make changes using GitHub in your browser, have your site rebuilt and deployed<br \/>\nautomatically, and see your changes reflected live on <code>&lt;username&gt;.github.io<\/code> or your<br \/>\n<a href=\"https:\/\/help.github.com\/articles\/setting-up-a-custom-domain-with-pages\">custom domain<\/a><br \/>\nbefore you know it.<\/p>\n<p>To learn more about building websites using GitHub Pages, you should<br \/>\ncheck out <a href=\"https:\/\/help.github.com\/categories\/20\/articles\">these\u00a0articles<\/a>.<\/p>\n<h2 id=\"get-your-github-flow-on\"><a class=\"heading-link\" href=\"#get-your-github-flow-on\">Get your GitHub Flow on!<span class=\"heading-hash pl-2 text-italic text-bold\" aria-hidden=\"true\"><\/span><\/a><\/h2>\n<p>In using them ourselves, we\u2019ve found that these web-based workflows have come in<br \/>\nhandy on an increasingly regular basis, and we\u2019re noticing real benefits from the reduced<br \/>\nbarrier to contributing. We hope you find these workflows useful too, and we can\u2019t wait<br \/>\nto see the interesting ways we know you\u2019ll put them to good use.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Now that you can delete files directly on GitHub we\u2019ve reached a very exciting milestone\u2014the entire GitHub Flow\u2122 is now possible using nothing but a web browser. What is GitHub&hellip;<\/p>\n","protected":false},"author":1410,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_gh_post_show_toc":"no","_gh_post_is_no_robots":"no","_gh_post_is_featured":"no","_gh_post_is_excluded":"no","_gh_post_is_unlisted":"no","_gh_post_related_link_1":"","_gh_post_related_link_2":"","_gh_post_related_link_3":"","_gh_post_sq_img":"","_gh_post_sq_img_id":"","_gh_post_cta_title":"","_gh_post_cta_text":"","_gh_post_cta_link":"","_gh_post_cta_button":"Click Here to Learn More","_gh_post_recirc_hide":"no","_gh_post_recirc_col_1":"78957","_gh_post_recirc_col_2":"78959","_gh_post_recirc_col_3":"78961","_gh_post_recirc_col_4":"77524","_featured_video":"","_gh_post_additional_query_params":"","_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2},"_wpas_customize_per_network":false,"_links_to":"","_links_to_target":""},"categories":[3298,3302],"tags":[],"coauthors":[2615],"class_list":["post-30114","post","type-post","status-publish","format-standard","hentry","category-developer-skills","category-github"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.3 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>GitHub Flow in the Browser - The GitHub Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/github.blog\/developer-skills\/github\/github-flow-in-the-browser\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"GitHub Flow in the Browser\" \/>\n<meta property=\"og:description\" content=\"Now that you can delete files directly on GitHub we\u2019ve reached a very exciting milestone\u2014the entire GitHub Flow\u2122 is now possible using nothing but a web browser. What is GitHub&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/github.blog\/developer-skills\/github\/github-flow-in-the-browser\/\" \/>\n<meta property=\"og:site_name\" content=\"The GitHub Blog\" \/>\n<meta property=\"article:published_time\" content=\"2013-07-11T23:03:01+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-07-23T16:28:52+00:00\" \/>\n<meta name=\"author\" content=\"Coby Chapple\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Coby Chapple\" \/>\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:\\\/\\\/github.blog\\\/developer-skills\\\/github\\\/github-flow-in-the-browser\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/github.blog\\\/developer-skills\\\/github\\\/github-flow-in-the-browser\\\/\"},\"author\":{\"name\":\"Coby Chapple\",\"@id\":\"https:\\\/\\\/github.blog\\\/#\\\/schema\\\/person\\\/a9dab838d33dddc8916fe82fc7903ca0\"},\"headline\":\"GitHub Flow in the Browser\",\"datePublished\":\"2013-07-11T23:03:01+00:00\",\"dateModified\":\"2024-07-23T16:28:52+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/github.blog\\\/developer-skills\\\/github\\\/github-flow-in-the-browser\\\/\"},\"wordCount\":867,\"articleSection\":[\"Developer skills\",\"GitHub\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/github.blog\\\/developer-skills\\\/github\\\/github-flow-in-the-browser\\\/\",\"url\":\"https:\\\/\\\/github.blog\\\/developer-skills\\\/github\\\/github-flow-in-the-browser\\\/\",\"name\":\"GitHub Flow in the Browser - The GitHub Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/github.blog\\\/#website\"},\"datePublished\":\"2013-07-11T23:03:01+00:00\",\"dateModified\":\"2024-07-23T16:28:52+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/github.blog\\\/#\\\/schema\\\/person\\\/a9dab838d33dddc8916fe82fc7903ca0\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/github.blog\\\/developer-skills\\\/github\\\/github-flow-in-the-browser\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/github.blog\\\/developer-skills\\\/github\\\/github-flow-in-the-browser\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/github.blog\\\/developer-skills\\\/github\\\/github-flow-in-the-browser\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/github.blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Developer skills\",\"item\":\"https:\\\/\\\/github.blog\\\/developer-skills\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"GitHub\",\"item\":\"https:\\\/\\\/github.blog\\\/developer-skills\\\/github\\\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"GitHub Flow in the Browser\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/github.blog\\\/#website\",\"url\":\"https:\\\/\\\/github.blog\\\/\",\"name\":\"The GitHub Blog\",\"description\":\"Updates, ideas, and inspiration from GitHub to help developers build and design software.\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/github.blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/github.blog\\\/#\\\/schema\\\/person\\\/a9dab838d33dddc8916fe82fc7903ca0\",\"name\":\"Coby Chapple\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/097bb5aff1502dfd0573daa776c356500191517ad34a39bd55611140807eccf8?s=96&d=mm&r=gb21350ae457ed0ae4ea8375bcc4bfbbe\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/097bb5aff1502dfd0573daa776c356500191517ad34a39bd55611140807eccf8?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/097bb5aff1502dfd0573daa776c356500191517ad34a39bd55611140807eccf8?s=96&d=mm&r=g\",\"caption\":\"Coby Chapple\"},\"sameAs\":[\"http:\\\/\\\/cobyism.com\"],\"url\":\"https:\\\/\\\/github.blog\\\/author\\\/cobyism\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"GitHub Flow in the Browser - The GitHub Blog","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:\/\/github.blog\/developer-skills\/github\/github-flow-in-the-browser\/","og_locale":"en_US","og_type":"article","og_title":"GitHub Flow in the Browser","og_description":"Now that you can delete files directly on GitHub we\u2019ve reached a very exciting milestone\u2014the entire GitHub Flow\u2122 is now possible using nothing but a web browser. What is GitHub&hellip;","og_url":"https:\/\/github.blog\/developer-skills\/github\/github-flow-in-the-browser\/","og_site_name":"The GitHub Blog","article_published_time":"2013-07-11T23:03:01+00:00","article_modified_time":"2024-07-23T16:28:52+00:00","author":"Coby Chapple","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Coby Chapple","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/github.blog\/developer-skills\/github\/github-flow-in-the-browser\/#article","isPartOf":{"@id":"https:\/\/github.blog\/developer-skills\/github\/github-flow-in-the-browser\/"},"author":{"name":"Coby Chapple","@id":"https:\/\/github.blog\/#\/schema\/person\/a9dab838d33dddc8916fe82fc7903ca0"},"headline":"GitHub Flow in the Browser","datePublished":"2013-07-11T23:03:01+00:00","dateModified":"2024-07-23T16:28:52+00:00","mainEntityOfPage":{"@id":"https:\/\/github.blog\/developer-skills\/github\/github-flow-in-the-browser\/"},"wordCount":867,"articleSection":["Developer skills","GitHub"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/github.blog\/developer-skills\/github\/github-flow-in-the-browser\/","url":"https:\/\/github.blog\/developer-skills\/github\/github-flow-in-the-browser\/","name":"GitHub Flow in the Browser - The GitHub Blog","isPartOf":{"@id":"https:\/\/github.blog\/#website"},"datePublished":"2013-07-11T23:03:01+00:00","dateModified":"2024-07-23T16:28:52+00:00","author":{"@id":"https:\/\/github.blog\/#\/schema\/person\/a9dab838d33dddc8916fe82fc7903ca0"},"breadcrumb":{"@id":"https:\/\/github.blog\/developer-skills\/github\/github-flow-in-the-browser\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/github.blog\/developer-skills\/github\/github-flow-in-the-browser\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/github.blog\/developer-skills\/github\/github-flow-in-the-browser\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/github.blog\/"},{"@type":"ListItem","position":2,"name":"Developer skills","item":"https:\/\/github.blog\/developer-skills\/"},{"@type":"ListItem","position":3,"name":"GitHub","item":"https:\/\/github.blog\/developer-skills\/github\/"},{"@type":"ListItem","position":4,"name":"GitHub Flow in the Browser"}]},{"@type":"WebSite","@id":"https:\/\/github.blog\/#website","url":"https:\/\/github.blog\/","name":"The GitHub Blog","description":"Updates, ideas, and inspiration from GitHub to help developers build and design software.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/github.blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/github.blog\/#\/schema\/person\/a9dab838d33dddc8916fe82fc7903ca0","name":"Coby Chapple","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/097bb5aff1502dfd0573daa776c356500191517ad34a39bd55611140807eccf8?s=96&d=mm&r=gb21350ae457ed0ae4ea8375bcc4bfbbe","url":"https:\/\/secure.gravatar.com\/avatar\/097bb5aff1502dfd0573daa776c356500191517ad34a39bd55611140807eccf8?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/097bb5aff1502dfd0573daa776c356500191517ad34a39bd55611140807eccf8?s=96&d=mm&r=g","caption":"Coby Chapple"},"sameAs":["http:\/\/cobyism.com"],"url":"https:\/\/github.blog\/author\/cobyism\/"}]}},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/pamS32-7PI","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/github.blog\/wp-json\/wp\/v2\/posts\/30114","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/github.blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/github.blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/github.blog\/wp-json\/wp\/v2\/users\/1410"}],"replies":[{"embeddable":true,"href":"https:\/\/github.blog\/wp-json\/wp\/v2\/comments?post=30114"}],"version-history":[{"count":1,"href":"https:\/\/github.blog\/wp-json\/wp\/v2\/posts\/30114\/revisions"}],"predecessor-version":[{"id":51479,"href":"https:\/\/github.blog\/wp-json\/wp\/v2\/posts\/30114\/revisions\/51479"}],"wp:attachment":[{"href":"https:\/\/github.blog\/wp-json\/wp\/v2\/media?parent=30114"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/github.blog\/wp-json\/wp\/v2\/categories?post=30114"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/github.blog\/wp-json\/wp\/v2\/tags?post=30114"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/github.blog\/wp-json\/wp\/v2\/coauthors?post=30114"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}