{"id":5232,"date":"2020-09-04T20:18:17","date_gmt":"2020-09-05T00:18:17","guid":{"rendered":"https:\/\/www.globo.tech\/learning-center\/?p=5232"},"modified":"2020-10-16T19:53:28","modified_gmt":"2020-10-16T23:53:28","slug":"how-to-install-git-on-ubuntu-18-04","status":"publish","type":"post","link":"https:\/\/www.globo.tech\/learning-center\/how-to-install-git-on-ubuntu-18-04\/","title":{"rendered":"How to install Git on Ubuntu 18.04"},"content":{"rendered":"\n<figure class=\"wp-block-image size-full is-style-default\"><img loading=\"lazy\" decoding=\"async\" width=\"1200\" height=\"628\" src=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2020\/09\/install-git-on-ubuntu1804.jpg\" alt=\"How to install GIT on Ubuntu 18.04.\" class=\"wp-image-5233\" srcset=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2020\/09\/install-git-on-ubuntu1804.jpg 1200w, https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2020\/09\/install-git-on-ubuntu1804-573x300.jpg 573w, https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2020\/09\/install-git-on-ubuntu1804-768x402.jpg 768w\" sizes=\"auto, (max-width: 1200px) 100vw, 1200px\" \/><\/figure>\n\n\n\n<p>Version control is very useful software in today&#8217;s software development environment. It helps developers to work together and manage the history of the work. You can easily recover your lost file using the version control system.<\/p>\n\n\n\n<p>Git is a free, open-source and most popular version control system that allows you to store your code on the <a href=\"https:\/\/www.globo.tech\/cloud-server-pricing\" target=\"_blank\" rel=\"noreferrer noopener\">cloud<\/a>. It offers very useful features that make it easier for multiple users to work on the same project. It allows you to track every change made by users and also able to revert the changes to the previous version. <\/p>\n\n\n\n<p>In this tutorial, we will show you how to Install Git On Ubuntu 18.04<\/p>\n\n\n\n<p><strong>Requirements<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>A <a href=\"https:\/\/www.globo.tech\/dedicated-server-hosting\" target=\"_blank\" rel=\"noreferrer noopener\">server <\/a>running Ubuntu 18.04<\/li><li>ROOT access to the server<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Install Git From Ubuntu Repository<\/h2>\n\n\n\n<p>In this section, we will show you how to install Git from the <a href=\"https:\/\/ubuntu.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">Ubuntu<\/a> default repository.<\/p>\n\n\n\n<p>By default, Git is available in the Ubuntu 18.04 default repository. You can install it by just running the following command:<\/p>\n\n\n\n<p><code>apt-get install git -y<\/code><\/p>\n\n\n\n<figure class=\"wp-block-image size-large is-resized is-style-default\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2020\/09\/apt-get_install_git-801x300.png\" alt=\"Install Git using apt-get install command.\" class=\"wp-image-5234\" width=\"801\" height=\"300\" srcset=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2020\/09\/apt-get_install_git-801x300.png 801w, https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2020\/09\/apt-get_install_git-768x288.png 768w, https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2020\/09\/apt-get_install_git.png 1092w\" sizes=\"auto, (max-width: 801px) 100vw, 801px\" \/><\/figure>\n\n\n\n<p>After installing Git, you can verify the installed version of Git with the following command:<\/p>\n\n\n\n<p><code>git --version<\/code><\/p>\n\n\n\n<p>You should see the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">git version 2.17.1<\/pre>\n\n\n\n<p>If you don&#8217;t need Git, you can remove it with the following command:<\/p>\n\n\n\n<p><code>apt-get remove git \u2013purge<\/code><\/p>\n\n\n\n<figure class=\"wp-block-image size-large is-resized is-style-default\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2020\/09\/apt-get_remove_git-1037x300.png\" alt=\"Remove Git using apt-get remove command.\" class=\"wp-image-5235\" width=\"1037\" height=\"300\" srcset=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2020\/09\/apt-get_remove_git-1037x300.png 1037w, https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2020\/09\/apt-get_remove_git-768x222.png 768w, https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2020\/09\/apt-get_remove_git.png 1092w\" sizes=\"auto, (max-width: 1037px) 100vw, 1037px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Install Git From Source<\/h2>\n\n\n\n<p>If you want to install the specific version of Git then one of the easiest ways to install the Git from the source.<\/p>\n\n\n\n<p>First, you will need to install required dependencies to compile Git from the source. You can install all of them with the following command:<\/p>\n\n\n\n<p><code>apt-get install make libssl-dev libghc-zlib-dev libexpat1-dev gettext libcurl4-gnutls-dev unzip -y<\/code><\/p>\n\n\n\n<p>Once all the packages are installed, visit the <a href=\"https:\/\/github.com\/git\/git\/releases\">Git official release page<\/a> as shown below.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large is-resized is-style-default\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2020\/09\/git_official_release_website-570x300.png\" alt=\"Git official release page.\" class=\"wp-image-5236\" width=\"570\" height=\"300\" srcset=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2020\/09\/git_official_release_website-570x300.png 570w, https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2020\/09\/git_official_release_website-768x404.png 768w, https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2020\/09\/git_official_release_website.png 1257w\" sizes=\"auto, (max-width: 570px) 100vw, 570px\" \/><\/figure>\n\n\n\n<p>Next, download the latest version of the Git with the following command:<\/p>\n\n\n\n<p><code>wget https:\/\/github.com\/git\/git\/archive\/v2.26.0.zip<\/code><\/p>\n\n\n\n<p>Once the download is completed, unzip the downloaded file with the following command:<\/p>\n\n\n\n<p><code>unzip v2.26.0.zip<\/code><\/p>\n\n\n\n<p>Next, change the directory to the extracted directory and run the following command to compile and install it on your system.<\/p>\n\n\n\n<p><code>cd git-2.26.0<br>\nmake prefix=\/usr all<br>\nmake prefix=\/usr install<\/code><\/p>\n\n\n\n<p>Once the Git has been installed successfully, you should see the following screen:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large is-resized is-style-default\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2020\/09\/Git_installed_successfully-541x300.png\" alt=\"Git installation using source files.\" class=\"wp-image-5237\" width=\"541\" height=\"300\" srcset=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2020\/09\/Git_installed_successfully-541x300.png 541w, https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2020\/09\/Git_installed_successfully-768x426.png 768w, https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2020\/09\/Git_installed_successfully.png 1288w\" sizes=\"auto, (max-width: 541px) 100vw, 541px\" \/><\/figure>\n\n\n\n<p>Next, verify the version of Git with the following command:<\/p>\n\n\n\n<p><code>git --version<\/code><\/p>\n\n\n\n<p>You should see the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">git version 2.26.0<\/pre>\n\n\n\n<p>You can also list all options available with Git using the following command:<\/p>\n\n\n\n<p><code>git --help<\/code><\/p>\n\n\n\n<p>You should see the following screen:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large is-resized is-style-default\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2020\/09\/Git_-help-446x300.png\" alt=\"git --help command output.\" class=\"wp-image-5238\" width=\"446\" height=\"300\" srcset=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2020\/09\/Git_-help-446x300.png 446w, https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2020\/09\/Git_-help-768x516.png 768w, https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2020\/09\/Git_-help-240x160.png 240w, https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2020\/09\/Git_-help.png 900w\" sizes=\"auto, (max-width: 446px) 100vw, 446px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Configure Git<\/h2>\n\n\n\n<p>Next, you will need to configure Git to define your personal information.<\/p>\n\n\n\n<p>You can define your global username and email address with the following command:<\/p>\n\n\n\n<p><code>git config --global user.name \"GloboTech Communications\"<br>git config --global user.email \"sysadmin@globo.tech\"<\/code><\/p>\n\n\n\n<p>You can see your all settings with the following command:<\/p>\n\n\n\n<p><code>git config --list<\/code><\/p>\n\n\n\n<p>You should see the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">user.name=GloboTech Communications\nuser.email=sysadmin@globo.tech<\/pre>\n\n\n\n<p>By default, Git stores all the configuration information in ~\/.gitconfig file. You can see it with the following command:<\/p>\n\n\n\n<p><code>cat ~\/.gitconfig<\/code><\/p>\n\n\n\n<p>You should get the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[user]\n         name = GloboTech Communications\n         email = sysadmin@globo.tech<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>In the above guide, you learned In this tutorial, we will show you how to install Git On Ubuntu 18.04 from the repository and install it from the source. I hope you can now easily install Git in the production environment. For more information, visit the Git documentation at <a href=\"https:\/\/git-scm.com\/doc\">Git<\/a>.<\/p>\n\n\n\n<p><\/p>\n<!-- AddThis Advanced Settings generic via filter on the_content --><!-- AddThis Share Buttons generic via filter on the_content -->","protected":false},"excerpt":{"rendered":"<p>Git is a free, open-source and most popular version control system that allows you to store your code. See how to Install Git On Ubuntu 18.04.<!-- AddThis Advanced Settings generic via filter on get_the_excerpt --><!-- AddThis Share Buttons generic via filter on get_the_excerpt --><\/p>\n","protected":false},"author":3,"featured_media":5233,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[195,99,160,101],"class_list":["post-5232","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog","tag-git","tag-gitlab","tag-how-to","tag-installation"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to install Git on Ubuntu 18.04 - Globo.Tech<\/title>\n<meta name=\"description\" content=\"Git is a free, open-source and most popular version control system that allows you to store your code. See how to Install Git On Ubuntu 18.04.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.globo.tech\/learning-center\/how-to-install-git-on-ubuntu-18-04\/\" \/>\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 Ubuntu 18.04 - Globo.Tech\" \/>\n<meta property=\"og:description\" content=\"Git is a free, open-source and most popular version control system that allows you to store your code. See how to Install Git On Ubuntu 18.04.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.globo.tech\/learning-center\/how-to-install-git-on-ubuntu-18-04\/\" \/>\n<meta property=\"og:site_name\" content=\"Globo.Tech\" \/>\n<meta property=\"article:published_time\" content=\"2020-09-05T00:18:17+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-10-16T23:53:28+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2020\/09\/install-git-on-ubuntu1804.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"628\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"GloboTech Communications\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"GloboTech Communications\" \/>\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\":\"WebPage\",\"@id\":\"https:\/\/www.globo.tech\/learning-center\/how-to-install-git-on-ubuntu-18-04\/\",\"url\":\"https:\/\/www.globo.tech\/learning-center\/how-to-install-git-on-ubuntu-18-04\/\",\"name\":\"How to install Git on Ubuntu 18.04 - Globo.Tech\",\"isPartOf\":{\"@id\":\"https:\/\/www.globo.tech\/learning-center\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.globo.tech\/learning-center\/how-to-install-git-on-ubuntu-18-04\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.globo.tech\/learning-center\/how-to-install-git-on-ubuntu-18-04\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2020\/09\/install-git-on-ubuntu1804.jpg\",\"datePublished\":\"2020-09-05T00:18:17+00:00\",\"dateModified\":\"2020-10-16T23:53:28+00:00\",\"author\":{\"@id\":\"https:\/\/www.globo.tech\/learning-center\/#\/schema\/person\/e17784b37f4a4f49b7bc611847912e87\"},\"description\":\"Git is a free, open-source and most popular version control system that allows you to store your code. See how to Install Git On Ubuntu 18.04.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.globo.tech\/learning-center\/how-to-install-git-on-ubuntu-18-04\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.globo.tech\/learning-center\/how-to-install-git-on-ubuntu-18-04\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.globo.tech\/learning-center\/how-to-install-git-on-ubuntu-18-04\/#primaryimage\",\"url\":\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2020\/09\/install-git-on-ubuntu1804.jpg\",\"contentUrl\":\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2020\/09\/install-git-on-ubuntu1804.jpg\",\"width\":1200,\"height\":628,\"caption\":\"How to install Git on Ubuntu 18.04.\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.globo.tech\/learning-center\/how-to-install-git-on-ubuntu-18-04\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.globo.tech\/learning-center\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install Git on Ubuntu 18.04\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.globo.tech\/learning-center\/#website\",\"url\":\"https:\/\/www.globo.tech\/learning-center\/\",\"name\":\"Globo.Tech\",\"description\":\"Welcome to the Official Globo.Tech Learning Center\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.globo.tech\/learning-center\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.globo.tech\/learning-center\/#\/schema\/person\/e17784b37f4a4f49b7bc611847912e87\",\"name\":\"GloboTech Communications\",\"sameAs\":[\"http:\/\/www.gtcomm.net\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to install Git on Ubuntu 18.04 - Globo.Tech","description":"Git is a free, open-source and most popular version control system that allows you to store your code. See how to Install Git On Ubuntu 18.04.","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:\/\/www.globo.tech\/learning-center\/how-to-install-git-on-ubuntu-18-04\/","og_locale":"en_US","og_type":"article","og_title":"How to install Git on Ubuntu 18.04 - Globo.Tech","og_description":"Git is a free, open-source and most popular version control system that allows you to store your code. See how to Install Git On Ubuntu 18.04.","og_url":"https:\/\/www.globo.tech\/learning-center\/how-to-install-git-on-ubuntu-18-04\/","og_site_name":"Globo.Tech","article_published_time":"2020-09-05T00:18:17+00:00","article_modified_time":"2020-10-16T23:53:28+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2020\/09\/install-git-on-ubuntu1804.jpg","type":"image\/jpeg"}],"author":"GloboTech Communications","twitter_misc":{"Written by":"GloboTech Communications","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.globo.tech\/learning-center\/how-to-install-git-on-ubuntu-18-04\/","url":"https:\/\/www.globo.tech\/learning-center\/how-to-install-git-on-ubuntu-18-04\/","name":"How to install Git on Ubuntu 18.04 - Globo.Tech","isPartOf":{"@id":"https:\/\/www.globo.tech\/learning-center\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.globo.tech\/learning-center\/how-to-install-git-on-ubuntu-18-04\/#primaryimage"},"image":{"@id":"https:\/\/www.globo.tech\/learning-center\/how-to-install-git-on-ubuntu-18-04\/#primaryimage"},"thumbnailUrl":"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2020\/09\/install-git-on-ubuntu1804.jpg","datePublished":"2020-09-05T00:18:17+00:00","dateModified":"2020-10-16T23:53:28+00:00","author":{"@id":"https:\/\/www.globo.tech\/learning-center\/#\/schema\/person\/e17784b37f4a4f49b7bc611847912e87"},"description":"Git is a free, open-source and most popular version control system that allows you to store your code. See how to Install Git On Ubuntu 18.04.","breadcrumb":{"@id":"https:\/\/www.globo.tech\/learning-center\/how-to-install-git-on-ubuntu-18-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.globo.tech\/learning-center\/how-to-install-git-on-ubuntu-18-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.globo.tech\/learning-center\/how-to-install-git-on-ubuntu-18-04\/#primaryimage","url":"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2020\/09\/install-git-on-ubuntu1804.jpg","contentUrl":"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2020\/09\/install-git-on-ubuntu1804.jpg","width":1200,"height":628,"caption":"How to install Git on Ubuntu 18.04."},{"@type":"BreadcrumbList","@id":"https:\/\/www.globo.tech\/learning-center\/how-to-install-git-on-ubuntu-18-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.globo.tech\/learning-center\/"},{"@type":"ListItem","position":2,"name":"How to install Git on Ubuntu 18.04"}]},{"@type":"WebSite","@id":"https:\/\/www.globo.tech\/learning-center\/#website","url":"https:\/\/www.globo.tech\/learning-center\/","name":"Globo.Tech","description":"Welcome to the Official Globo.Tech Learning Center","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.globo.tech\/learning-center\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.globo.tech\/learning-center\/#\/schema\/person\/e17784b37f4a4f49b7bc611847912e87","name":"GloboTech Communications","sameAs":["http:\/\/www.gtcomm.net"]}]}},"_links":{"self":[{"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/posts\/5232","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/comments?post=5232"}],"version-history":[{"count":5,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/posts\/5232\/revisions"}],"predecessor-version":[{"id":5254,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/posts\/5232\/revisions\/5254"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/media\/5233"}],"wp:attachment":[{"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/media?parent=5232"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/categories?post=5232"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/tags?post=5232"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}