{"id":11782,"date":"2022-01-27T09:29:30","date_gmt":"2022-01-27T14:29:30","guid":{"rendered":"http:\/\/local.brightwhiz\/?p=11782"},"modified":"2022-01-27T09:29:33","modified_gmt":"2022-01-27T14:29:33","slug":"how-to-install-git-on-centos-7-linux-system","status":"publish","type":"post","link":"http:\/\/local.brightwhiz\/how-to-install-git-on-centos-7-linux-system\/","title":{"rendered":"How To Install Git on CentOS 7 With Examples"},"content":{"rendered":"\n

In the developer world, source control<\/a> is important in that it allows the development teams to track and manage changes to code by keeping the history and helps resolve conflicts when merging contributions from multiple sources. Before we see how to install Git on CentOS 7 we need to know what Git is.<\/p>\n\n\n\n

Git<\/a> is a free and open-source distributed version control system. It is software designed for tracking changes in sets of files and directories. It aims to achieve speed, data integrity, and support for distributed, and non-linear workflows.<\/p>\n\n\n\n

Git happens to be one of the most popular and active version control systems. Sites like GitHub, GitLab, and Bitbucket have made sharing and contributing to code with Git much easier and more widespread than ever.<\/p>\n\n\n\n

Prerequisites<\/h2>\n\n\n\n

You will need a fully configured and working CentOS 7<\/a> server with a non-root user with sudo privileges. You should have basic knowledge of using the Linux terminal.<\/p>\n\n\n\n

Step 1: Install Git on CentOS 7<\/h2>\n\n\n\n

Git is available in the CentOS software repositories so that is where we will install it from. This is the fastest method even though the downside of this method is that the Git version that is installed may be older than the newest version available. If you need the latest release, you can install Git from the source.<\/p>\n\n\n\n

Let’s proceed. To install Git on CentOS 7 from the default software repositories we will be using yum, CentOS’s native package manager. We start by updating the package list and upgrading the Linux<\/a> system:<\/p>\n\n\n\n

$ sudo yum update && sudo yum upgrade<\/code><\/pre>\n\n\n\n

Now we install Git.<\/p>\n\n\n\n

$ sudo yum install git<\/code><\/pre>\n\n\n\n

You can double-check the installation by checking the Git version using this:<\/p>\n\n\n\n

$ git --version<\/code><\/pre>\n\n\n\n

Step 2: Setting Up Git<\/h2>\n\n\n\n

With Git installed, you need to configure it in ready for your first and subsequent uses. Here you will be configuring some information about yourself so that commit messages will be created with the correct information attached.<\/p>\n\n\n\n

This is done by providing the name and email address that you would like to have embedded into your commits using the git config command:<\/p>\n\n\n\n

$ git config --global user.name "Example User"\n$ git config --global user.email "git.user@example.com"<\/code><\/pre>\n\n\n\n

Confirm your configurations.<\/p>\n\n\n\n

$ git config --list<\/code><\/pre>\n\n\n\n
Output\nuser.name=Example User\nuser.email=git.user@example.com<\/code><\/pre>\n\n\n\n

Install the Latest Git From Source Code<\/h2>\n\n\n\n

Step 1: Download Git Source<\/h2>\n\n\n\n

You will need to download the latest version of Git. As of this posting, the latest version of Git is 2.35.0. You can check for the latest version at any point in time by navigating to this list https:\/\/mirrors.edge.kernel.org\/pub\/software\/scm\/git\/<\/a>. Once you have determined the version you can begin your installation.<\/p>\n\n\n\n

Download and extract the tarball and go to the folder of the source code:<\/p>\n\n\n\n

$ wget https:\/\/mirrors.edge.kernel.org\/pub\/software\/scm\/git\/git-2.35.0.tar.gz\n$ tar xf git-2.35.0.tar.gz\n$ cd git-2.35.0\/<\/code><\/pre>\n\n\n\n

Note: Remember to use the correct tarball version in the commands above.<\/p>\n\n\n\n

Step 2: Install the Dependencies<\/h2>\n\n\n\n

Run these commands to install the dependencies in case they are missing on your CentosOS 7 system.<\/p>\n\n\n\n

$ sudo yum groupinstall 'Development Tools'\n$ sudo yum install curl-devel expat-devel gettext-devel openssl-devel zlib-devel perl-CPAN perl-devel<\/code><\/pre>\n\n\n\n

Step 3: Compile and Install Git<\/h2>\n\n\n\n

Run the following commands to configure, compile and install Git.<\/p>\n\n\n\n

$ make configure\n$ .\/configure --prefix=\/usr\/local\n$ make all\n$ make install<\/code><\/pre>\n\n\n\n

Once complete, ensure that your install was successful by checking the version.<\/p>\n\n\n\n

 git --version<\/code><\/pre>\n\n\n\n
Output\ngit version 2.35.0<\/code><\/pre>\n\n\n\n

Complete your setup as explained above using the git config command.<\/p>\n\n\n\n

$ git config --global user.name "Example User"\n$ git config --global user.email "git.user@example.com"<\/code><\/pre>\n\n\n\n

Confirm your configurations.<\/p>\n\n\n\n

$ git config --list<\/code><\/pre>\n\n\n\n
Output\nuser.name=Example User\nuser.email=git.user@example.com<\/code><\/pre>\n\n\n\n

Conclusion<\/h2>\n\n\n\n

You should now have git installed and ready to use on your system. Whether you did install Git on CentOS 7 using the default software repositories or from the source.<\/p>\n","protected":false},"excerpt":{"rendered":"

In the developer world, source control is important in that it allows the development teams to track and manage changes to code by keeping the history and helps resolve conflicts…<\/p>\n","protected":false},"author":1,"featured_media":11784,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2,23,9,28,16,18],"tags":[121,784,354,424,433,449,471,544,545,783,591],"yoast_head":"\nHow To Install Git on CentOS 7 Linux System<\/title>\n<meta name=\"description\" content=\"This is the ultimate guide to know how to install Git on CentOS 7 with examples from repositories and building from the latest source code\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/local.brightwhiz\/how-to-install-git-on-centos-7-linux-system\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Install Git on CentOS 7 Linux System\" \/>\n<meta property=\"og:description\" content=\"This is the ultimate guide to know how to install Git on CentOS 7 with examples from repositories and building from the latest source code\" \/>\n<meta property=\"og:url\" content=\"http:\/\/local.brightwhiz\/how-to-install-git-on-centos-7-linux-system\/\" \/>\n<meta property=\"og:site_name\" content=\"Brightwhiz.com\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/brightwhiz\/\" \/>\n<meta property=\"article:published_time\" content=\"2022-01-27T14:29:30+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-01-27T14:29:33+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/01\/Git-on-CentOS-7.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"680\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Michael Bright\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@brightwhizmag\" \/>\n<meta name=\"twitter:site\" content=\"@brightwhizmag\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Michael Bright\" \/>\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\":\"http:\/\/local.brightwhiz\/how-to-install-git-on-centos-7-linux-system\/#article\",\"isPartOf\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-git-on-centos-7-linux-system\/\"},\"author\":{\"name\":\"Michael Bright\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32\"},\"headline\":\"How To Install Git on CentOS 7 With Examples\",\"datePublished\":\"2022-01-27T14:29:30+00:00\",\"dateModified\":\"2022-01-27T14:29:33+00:00\",\"mainEntityOfPage\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-git-on-centos-7-linux-system\/\"},\"wordCount\":529,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/local.brightwhiz\/#organization\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-git-on-centos-7-linux-system\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/01\/Git-on-CentOS-7.jpg\",\"keywords\":[\"CentOS\",\"Git\",\"Linux\",\"Open Source\",\"Optimization\",\"Performance\",\"Programming\",\"Software development\",\"Software Engineering\",\"Source Control\",\"Tools\"],\"articleSection\":[\"Articles\",\"Guides\",\"How To\",\"Software\",\"Technology\",\"Tools\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"http:\/\/local.brightwhiz\/how-to-install-git-on-centos-7-linux-system\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-git-on-centos-7-linux-system\/\",\"url\":\"http:\/\/local.brightwhiz\/how-to-install-git-on-centos-7-linux-system\/\",\"name\":\"How To Install Git on CentOS 7 Linux System\",\"isPartOf\":{\"@id\":\"http:\/\/local.brightwhiz\/#website\"},\"primaryImageOfPage\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-git-on-centos-7-linux-system\/#primaryimage\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-git-on-centos-7-linux-system\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/01\/Git-on-CentOS-7.jpg\",\"datePublished\":\"2022-01-27T14:29:30+00:00\",\"dateModified\":\"2022-01-27T14:29:33+00:00\",\"description\":\"This is the ultimate guide to know how to install Git on CentOS 7 with examples from repositories and building from the latest source code\",\"breadcrumb\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-git-on-centos-7-linux-system\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\/\/local.brightwhiz\/how-to-install-git-on-centos-7-linux-system\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-git-on-centos-7-linux-system\/#primaryimage\",\"url\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/01\/Git-on-CentOS-7.jpg\",\"contentUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/01\/Git-on-CentOS-7.jpg\",\"width\":1280,\"height\":680,\"caption\":\"Install Git on CentOS 7\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-git-on-centos-7-linux-system\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/local.brightwhiz\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Install Git on CentOS 7 With Examples\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\/\/local.brightwhiz\/#website\",\"url\":\"http:\/\/local.brightwhiz\/\",\"name\":\"Brightwhiz.com\",\"description\":\"Best Tech guides, Tutorials, and News\",\"publisher\":{\"@id\":\"http:\/\/local.brightwhiz\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\/\/local.brightwhiz\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"http:\/\/local.brightwhiz\/#organization\",\"name\":\"Brightwhiz\",\"url\":\"http:\/\/local.brightwhiz\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/\",\"url\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png\",\"contentUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png\",\"width\":706,\"height\":135,\"caption\":\"Brightwhiz\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/brightwhiz\/\",\"https:\/\/twitter.com\/brightwhizmag\",\"https:\/\/instagram.com\/bright_whiz\/\",\"https:\/\/www.pinterest.com\/sobbayi\/\",\"https:\/\/www.youtube.com\/channel\/UC6sCdP_d_RiTIM7ErFT-PSQ\"]},{\"@type\":\"Person\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32\",\"name\":\"Michael Bright\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/image\/\",\"url\":\"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g\",\"contentUrl\":\"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g\",\"caption\":\"Michael Bright\"},\"sameAs\":[\"https:\/\/sobbayi.com\"],\"url\":\"http:\/\/local.brightwhiz\/author\/sobbayiadmin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How To Install Git on CentOS 7 Linux System","description":"This is the ultimate guide to know how to install Git on CentOS 7 with examples from repositories and building from the latest source code","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":"http:\/\/local.brightwhiz\/how-to-install-git-on-centos-7-linux-system\/","og_locale":"en_US","og_type":"article","og_title":"How To Install Git on CentOS 7 Linux System","og_description":"This is the ultimate guide to know how to install Git on CentOS 7 with examples from repositories and building from the latest source code","og_url":"http:\/\/local.brightwhiz\/how-to-install-git-on-centos-7-linux-system\/","og_site_name":"Brightwhiz.com","article_publisher":"https:\/\/www.facebook.com\/brightwhiz\/","article_published_time":"2022-01-27T14:29:30+00:00","article_modified_time":"2022-01-27T14:29:33+00:00","og_image":[{"width":1280,"height":680,"url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/01\/Git-on-CentOS-7.jpg","type":"image\/jpeg"}],"author":"Michael Bright","twitter_card":"summary_large_image","twitter_creator":"@brightwhizmag","twitter_site":"@brightwhizmag","twitter_misc":{"Written by":"Michael Bright","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"http:\/\/local.brightwhiz\/how-to-install-git-on-centos-7-linux-system\/#article","isPartOf":{"@id":"http:\/\/local.brightwhiz\/how-to-install-git-on-centos-7-linux-system\/"},"author":{"name":"Michael Bright","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32"},"headline":"How To Install Git on CentOS 7 With Examples","datePublished":"2022-01-27T14:29:30+00:00","dateModified":"2022-01-27T14:29:33+00:00","mainEntityOfPage":{"@id":"http:\/\/local.brightwhiz\/how-to-install-git-on-centos-7-linux-system\/"},"wordCount":529,"commentCount":0,"publisher":{"@id":"http:\/\/local.brightwhiz\/#organization"},"image":{"@id":"http:\/\/local.brightwhiz\/how-to-install-git-on-centos-7-linux-system\/#primaryimage"},"thumbnailUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/01\/Git-on-CentOS-7.jpg","keywords":["CentOS","Git","Linux","Open Source","Optimization","Performance","Programming","Software development","Software Engineering","Source Control","Tools"],"articleSection":["Articles","Guides","How To","Software","Technology","Tools"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["http:\/\/local.brightwhiz\/how-to-install-git-on-centos-7-linux-system\/#respond"]}]},{"@type":"WebPage","@id":"http:\/\/local.brightwhiz\/how-to-install-git-on-centos-7-linux-system\/","url":"http:\/\/local.brightwhiz\/how-to-install-git-on-centos-7-linux-system\/","name":"How To Install Git on CentOS 7 Linux System","isPartOf":{"@id":"http:\/\/local.brightwhiz\/#website"},"primaryImageOfPage":{"@id":"http:\/\/local.brightwhiz\/how-to-install-git-on-centos-7-linux-system\/#primaryimage"},"image":{"@id":"http:\/\/local.brightwhiz\/how-to-install-git-on-centos-7-linux-system\/#primaryimage"},"thumbnailUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/01\/Git-on-CentOS-7.jpg","datePublished":"2022-01-27T14:29:30+00:00","dateModified":"2022-01-27T14:29:33+00:00","description":"This is the ultimate guide to know how to install Git on CentOS 7 with examples from repositories and building from the latest source code","breadcrumb":{"@id":"http:\/\/local.brightwhiz\/how-to-install-git-on-centos-7-linux-system\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/local.brightwhiz\/how-to-install-git-on-centos-7-linux-system\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/how-to-install-git-on-centos-7-linux-system\/#primaryimage","url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/01\/Git-on-CentOS-7.jpg","contentUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2022\/01\/Git-on-CentOS-7.jpg","width":1280,"height":680,"caption":"Install Git on CentOS 7"},{"@type":"BreadcrumbList","@id":"http:\/\/local.brightwhiz\/how-to-install-git-on-centos-7-linux-system\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/local.brightwhiz\/"},{"@type":"ListItem","position":2,"name":"How To Install Git on CentOS 7 With Examples"}]},{"@type":"WebSite","@id":"http:\/\/local.brightwhiz\/#website","url":"http:\/\/local.brightwhiz\/","name":"Brightwhiz.com","description":"Best Tech guides, Tutorials, and News","publisher":{"@id":"http:\/\/local.brightwhiz\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/local.brightwhiz\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"http:\/\/local.brightwhiz\/#organization","name":"Brightwhiz","url":"http:\/\/local.brightwhiz\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/","url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png","contentUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png","width":706,"height":135,"caption":"Brightwhiz"},"image":{"@id":"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/brightwhiz\/","https:\/\/twitter.com\/brightwhizmag","https:\/\/instagram.com\/bright_whiz\/","https:\/\/www.pinterest.com\/sobbayi\/","https:\/\/www.youtube.com\/channel\/UC6sCdP_d_RiTIM7ErFT-PSQ"]},{"@type":"Person","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32","name":"Michael Bright","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/image\/","url":"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g","contentUrl":"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g","caption":"Michael Bright"},"sameAs":["https:\/\/sobbayi.com"],"url":"http:\/\/local.brightwhiz\/author\/sobbayiadmin\/"}]}},"_links":{"self":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/11782"}],"collection":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/comments?post=11782"}],"version-history":[{"count":0,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/11782\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/media\/11784"}],"wp:attachment":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/media?parent=11782"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/categories?post=11782"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/tags?post=11782"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}