{"id":23131,"date":"2020-09-24T08:07:56","date_gmt":"2020-09-24T15:07:56","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=23131"},"modified":"2023-12-01T04:00:22","modified_gmt":"2023-12-01T12:00:22","slug":"git-pull-all-branches","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/git-pull-all-branches\/","title":{"rendered":"Git: Pull All Branches"},"content":{"rendered":"\n<p>Git lets you maintain multiple separate lines of development for a project. These lines of development are called branches. You can retrieve the latest version of a branch from a remote repository independently or you can retrieve the latest version of all branches at once.<br><\/p>\n\n\n\n<p>In this guide, we talk about how to use the git fetch &#8211;all and git pull &#8211;all command to retrieve changes from a remote repository.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What is Branching?<\/h2>\n\n\n\n<p>Let\u2019s say we are working on a blog website. We\u2019re going to add a feature to the blog that lets users comment. We don\u2019t want this feature to be part of the main version of our project because we are still working on it.<br><\/p>\n\n\n\n<p>We can use a <a href=\"https:\/\/careerkarma.com\/blog\/git-branch\/\">Git branch<\/a> for this. We can create a branch called \u201ccomments\u201d to store all the code for our commenting feature. This will let us work on our commenting feature without changing the main version of our codebase that is deployed on a website.<br><\/p>\n\n\n\n<p>Branches can be stored locally or remotely. If you are working on a local version of a project, a branch will be local. Remote branches are stored with the main version of a project.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Git: Fetch All Branches<\/h2>\n\n\n\n<p>We\u2019re working on a project called blog-site. This project contains two branches: origin master and origin dev.<br><\/p>\n\n\n\n<p>The dev branch contains all the experimental features we are working with. We think that another collaborator has pushed changes to both branches. We want to make sure and retrieve the metadata for any changes if they have been made.<br><\/p>\n\n\n\n<p>We can do this using the fetch command. The fetch command tells Git to retrieve metadata from a remote branch on the latest updates. The fetch command does not update the files stored in a local version of a repository.<br><\/p>\n\n\n\n<p>To track all remote branches and fetch the metadata for those branches, we can use the <a href=\"https:\/\/careerkarma.com\/blog\/git-fetch\/\">git fetch command<\/a> with the &#8211;all flag:<br><\/p>\n\n\n\n<p><code>git fetch --all<br><\/code><\/p>\n\n\n\n<p>This command returns:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>Fetching origin\nremote: Enumerating objects: 5, done.\nremote: Counting objects: 100% (5\/5), done.\nremote: Total 3 (delta 0), reused 0 (delta 0), pack-reused 0\nUnpacking objects: 100% (3\/3), done.\nFrom https:\/\/github.com\/career-karma-tutorials\/blog-site\n   3fcea0c..da74d68  dev    \t-&gt; origin\/dev<\/pre><\/div>\n\n\n\n<p>The fetch command has fetched all of the changes we\u2019ve made to our remote repository. The fetch command knows our remote dev branch contains changes we do not have on our local machine. We have just retrieved the metadata for those commits.<br><\/p>\n\n\n\n<p>We can retrieve the metadata for an individual branch using the git fetch origin <code>&lt;branch-name><\/code> command.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Git: Pull All Branches<\/h2>\n\n\n\n<p>What if you want to update your local working copy as well as retrieve metadata? That\u2019s where the git pull command comes in handy.<br><\/p>\n\n\n\n<p>We now know that changes have been made to our repository. We are happy with merging these changes with our local repository. To download the changes to our local machine, we need to use the <a href=\"https:\/\/careerkarma.com\/blog\/git-pull\/\">git pull command<\/a>:<br><\/p>\n\n\n\n<p><code>git pull --all<br><\/code><\/p>\n\n\n\n<p>We\u2019ve used the &#8211;all flag to indicate that we want to retrieve changes from every branch. Our command returns:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>Fetching origin\nremote: Enumerating objects: 5, done.\nremote: Counting objects: 100% (5\/5), done.\nremote: Total 3 (delta 0), reused 0 (delta 0), pack-reused 0\nUnpacking objects: 100% (3\/3), done.\nFrom https:\/\/github.com\/career-karma-tutorials\/blog-site\n   3fcea0c..da74d68  dev    \t-&gt; origin\/dev\nUpdating 3fcea0c..da74d68\nFast-forward\n README.md | 1 +\n 1 file changed, 1 insertion(+)\n<\/pre><\/div>\n\n\n\n<p>The git pull command first runs a git fetch command to check for changes. The fetch operation returns the metadata for <a href=\"https:\/\/careerkarma.com\/blog\/git-commit\/\">our commits<\/a>. Then, the git pull command retrieves all the changes we have made to our remote repository and changes our local files.<br><\/p>\n\n\n\n<p>We can see the README.md file was changed on our remote repository. Now that we\u2019ve run a pull operation, we have the change on our local machine.<br><\/p>\n\n\n\n<p>To retrieve the code from one branch, we could use the git pull origin &lt;branch-name&gt; command.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The git fetch &#8211;all command retrieves metadata on each change made to all the branches in a repository. The git pull &#8211;all command downloads all of the changes made across all branches to your local machine.<br>Now you have the knowledge you need to pull all branches from <a href=\"https:\/\/careerkarma.com\/blog\/what-is-git\/\">Git like a pro<\/a>!<\/p>\n","protected":false},"excerpt":{"rendered":"Git lets you maintain multiple separate lines of development for a project. These lines of development are called branches. You can retrieve the latest version of a branch from a remote repository independently or you can retrieve the latest version of all branches at once. In this guide, we talk about how to use the&hellip;","protected":false},"author":240,"featured_media":9242,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[17286],"tags":[],"class_list":{"0":"post-23131","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: Pull All Branches | Career Karma<\/title>\n<meta name=\"description\" content=\"On Career Karma, learn how to use the git fetch --all and git pull --all commands to pull all branches from a Git repository.\" \/>\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-pull-all-branches\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Git: Pull All Branches\" \/>\n<meta property=\"og:description\" content=\"On Career Karma, learn how to use the git fetch --all and git pull --all commands to pull all branches from a Git repository.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/git-pull-all-branches\/\" \/>\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-24T15:07:56+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T12:00:22+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/12\/artem-sapegin-ZMraoOybTLQ-unsplash-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"667\" \/>\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-pull-all-branches\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-pull-all-branches\\\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"Git: Pull All Branches\",\"datePublished\":\"2020-09-24T15:07:56+00:00\",\"dateModified\":\"2023-12-01T12:00:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-pull-all-branches\\\/\"},\"wordCount\":622,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-pull-all-branches\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/12\\\/artem-sapegin-ZMraoOybTLQ-unsplash-1.jpg\",\"articleSection\":[\"Git\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-pull-all-branches\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-pull-all-branches\\\/\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-pull-all-branches\\\/\",\"name\":\"Git: Pull All Branches | Career Karma\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-pull-all-branches\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-pull-all-branches\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/12\\\/artem-sapegin-ZMraoOybTLQ-unsplash-1.jpg\",\"datePublished\":\"2020-09-24T15:07:56+00:00\",\"dateModified\":\"2023-12-01T12:00:22+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"On Career Karma, learn how to use the git fetch --all and git pull --all commands to pull all branches from a Git repository.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-pull-all-branches\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-pull-all-branches\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-pull-all-branches\\\/#primaryimage\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/12\\\/artem-sapegin-ZMraoOybTLQ-unsplash-1.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/12\\\/artem-sapegin-ZMraoOybTLQ-unsplash-1.jpg\",\"width\":1000,\"height\":667},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-pull-all-branches\\\/#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: Pull All Branches\"}]},{\"@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: Pull All Branches | Career Karma","description":"On Career Karma, learn how to use the git fetch --all and git pull --all commands to pull all branches from a Git repository.","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-pull-all-branches\/","og_locale":"en_US","og_type":"article","og_title":"Git: Pull All Branches","og_description":"On Career Karma, learn how to use the git fetch --all and git pull --all commands to pull all branches from a Git repository.","og_url":"https:\/\/careerkarma.com\/blog\/git-pull-all-branches\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-09-24T15:07:56+00:00","article_modified_time":"2023-12-01T12:00:22+00:00","og_image":[{"width":1000,"height":667,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/12\/artem-sapegin-ZMraoOybTLQ-unsplash-1.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-pull-all-branches\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/git-pull-all-branches\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"Git: Pull All Branches","datePublished":"2020-09-24T15:07:56+00:00","dateModified":"2023-12-01T12:00:22+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/git-pull-all-branches\/"},"wordCount":622,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/git-pull-all-branches\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/12\/artem-sapegin-ZMraoOybTLQ-unsplash-1.jpg","articleSection":["Git"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/git-pull-all-branches\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/git-pull-all-branches\/","url":"https:\/\/careerkarma.com\/blog\/git-pull-all-branches\/","name":"Git: Pull All Branches | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/git-pull-all-branches\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/git-pull-all-branches\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/12\/artem-sapegin-ZMraoOybTLQ-unsplash-1.jpg","datePublished":"2020-09-24T15:07:56+00:00","dateModified":"2023-12-01T12:00:22+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"On Career Karma, learn how to use the git fetch --all and git pull --all commands to pull all branches from a Git repository.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/git-pull-all-branches\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/git-pull-all-branches\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/git-pull-all-branches\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/12\/artem-sapegin-ZMraoOybTLQ-unsplash-1.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/12\/artem-sapegin-ZMraoOybTLQ-unsplash-1.jpg","width":1000,"height":667},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/git-pull-all-branches\/#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: Pull All Branches"}]},{"@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\/23131","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=23131"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/23131\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/9242"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=23131"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=23131"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=23131"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}