{"id":383235,"date":"2023-05-30T08:43:45","date_gmt":"2023-05-30T08:43:45","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=383235"},"modified":"2023-05-30T08:48:23","modified_gmt":"2023-05-30T08:48:23","slug":"how-to-install-and-configure-git","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/how-to-install-and-configure-git\/","title":{"rendered":"Git: An Introduction to Installation and Configuration"},"content":{"rendered":"\n<h3 class=\"wp-block-heading\">Git i<strong>ntroduction?<\/strong><\/h3>\n\n\n\n<p>Git is a free and open-source distributed version control system that is designed to handle everything from small to very large projects with speed and efficiency. It is used by millions of developers around the world to collaborate on software projects.<\/p>\n\n\n\n<p>Git is a distributed version control system, which means that you can work on your code without having to connect to a central server. This makes it very easy to collaborate with others, even if they are not on the same network as you.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Benefits<\/strong> of git<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Efficiency:<\/strong>&nbsp;With its remarkable efficiency in tracking code changes, Git enables swift and seamless management of your codebase or merge changes from another branch.<\/li>\n\n\n\n<li><strong>Reliability:<\/strong>&nbsp;The extensive usage and community support make it highly unlikely for you to experience any code loss, providing you with added confidence in the integrity and security of your codebase.<\/li>\n\n\n\n<li><strong>Flexibility:<\/strong>&nbsp;It&#8217;s a very flexible version control system. You can use it to track any type of file, and you can customize it to meet your specific needs.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">How to install git?<\/h3>\n\n\n\n<p>Here are the steps on how to install Git on your local computer:<\/p>\n\n\n\n<p><strong>Ubuntu<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Open the terminal by pressing<code> Ctrl<\/code>+<code>Alt<\/code>+<code>T<\/code>.<\/li>\n\n\n\n<li>Update the package list by typing<\/li>\n<\/ul>\n\n\n\n<pre class=\"EnlighterJSRAW\">sudo apt-get update<\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Install Git by typing<\/li>\n<\/ul>\n\n\n\n<pre class=\"EnlighterJSRAW\">sudo apt-get install git<\/pre>\n\n\n\n<p><strong>Windows<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Download the Git for Windows installer from the official Git website:  <a href=\"https:\/\/git-scm.com\/downloads\">Download here<\/a>.<\/li>\n\n\n\n<li>Run the installer and follow the instructions in the setup wizard.<\/li>\n\n\n\n<li>When prompted, select the default options or choose your preferred settings.<\/li>\n<\/ul>\n\n\n\n<p><strong>macOS<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Open the Terminal app from Applications &gt; Utilities &gt; Terminal.<\/li>\n\n\n\n<li>Install Homebrew by entering&nbsp;the following command in the terminal<\/li>\n<\/ul>\n\n\n\n<pre class=\"EnlighterJSRAW\">\/bin\/bash -c &quot;$(curl -fsSL https:\/\/raw.githubusercontent.com\/Homebrew\/install\/HEAD\/install.sh)&quot;<\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Install Git by entering the following command in the terminal.<\/li>\n<\/ul>\n\n\n\n<pre class=\"EnlighterJSRAW\">brew install git<\/pre>\n\n\n\n<p>Once Git is installed, you can verify the installation by typing<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">git --version<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">How to configure username, and email globally and in specific repositories?<\/h3>\n\n\n\n<pre class=\"EnlighterJSRAW\">git config --global user.name &quot;Your Name&quot;\ngit config --global user.email &quot;your.name@example.com&quot;<\/pre>\n\n\n\n<p>These commands will set your username and email to the values you specify. This will be used for all Git operations that you perform on your computer.<\/p>\n\n\n\n<p>You can also configure your username and email for a specific repository. To do this, you can use the following commands:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">cd \/path\/to\/repository\ngit config user.name &quot;Your Name&quot;\ngit config user.email &quot;your.name@example.com&quot;<\/pre>\n\n\n\n<p>These commands will set your username and email for the specific repository that you are currently in.<\/p>\n\n\n\n<p><strong>NOTE:<\/strong> you can only have one username and email configured globally. If you want to use a different username or email for a specific repository, you will need to configure it for that repository specifically.<\/p>\n\n\n\n<p>Here are some additional details about the <code>git config<\/code> command:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The&nbsp;<code>--global<\/code>&nbsp;the option tells Git to set the configuration for all repositories on your computer.<\/li>\n\n\n\n<li>The&nbsp;<code>user.name<\/code>&nbsp;and&nbsp;<code>user.email<\/code>&nbsp;options tell Git your username and email address.<\/li>\n\n\n\n<li>You can use any value for your username and email address, but it is best to use a value that is consistent with your other online identities.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">How to configure the editor globally and in specific repositories?<\/h3>\n\n\n\n<pre class=\"EnlighterJSRAW\">git config --global core.editor &quot;vim&quot;<\/pre>\n\n\n\n<p>You can use any text editor that you want as your default editor. Just make sure to specify the full path to the editor executable.<\/p>\n\n\n\n<p>You can also configure the default editor for a specific repository. To do this, you can use the following command.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">cd \/path\/to\/repository\ngit config core.editor &quot;vim&quot;<\/pre>\n\n\n\n<p>This will set the default editor for the specific repository that you are currently in.<\/p>\n\n\n\n<p><strong>NOTE:<\/strong> It is important to note that you can only have one default editor configured globally. If you want to use a different default editor for a specific repository, you will need to configure it for that repository specifically.<\/p>\n\n\n\n<p>Here are some additional details about the <code>git config<\/code> command.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The&nbsp;<code>--global<\/code>&nbsp;the option tells Git to set the configuration for all repositories on your computer.<\/li>\n\n\n\n<li>The&nbsp;<code>core.editor<\/code>&nbsp;the option tells Git the path to the default editor.<\/li>\n\n\n\n<li>You can use any value for the&nbsp;<code>core.editor<\/code>&nbsp;option, but it is best to use a value that is the path to a text editor that you are familiar with.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">How to change the default branch name?<\/h3>\n\n\n\n<p>You can change your default branch name following this command.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">git config --global init.defaultBranch &lt;new_branch_name&gt;<\/pre>\n\n\n\n<p>This will change the default branch name for all new repositories that you create. You can also change the default branch name for an existing repository by using the following command.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">cd \/path\/to\/repository\ngit config init.defaultBranch &lt;new_branch_name&gt;<\/pre>\n\n\n\n<p><strong>NOTE:<\/strong> It is crucial to bear in mind that you can have only one globally configured default branch. In case you wish to utilize a different default branch for a particular repository, it is necessary to configure it specifically for that repository.<\/p>\n\n\n\n<p>Here are some additional details about the <code>git config<\/code> command.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The&nbsp;<code>--global<\/code>&nbsp;the option tells Git to set the configuration for all repositories on your computer.<\/li>\n\n\n\n<li>The&nbsp;<code>init.defaultBranch<\/code>&nbsp;the option tells Git the name of the default branch.<\/li>\n\n\n\n<li>You can use any value for the&nbsp;<code>init.defaultBranch<\/code>&nbsp;option, but it is best to use a value that is descriptive of the purpose of the branch.<\/li>\n<\/ul>\n\n\n\n<p>After completing all configuration you can check the settings by following this command.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>You can use the&nbsp;<code>git config --list<\/code>&nbsp;command to see a list of all of your configured Git settings.<\/li>\n\n\n\n<li>You can use the&nbsp;<code>git config --edit<\/code>&nbsp;command to open a text editor where you can make changes to your Git settings.<\/li>\n<\/ul>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Git introduction? Git is a free and open-source distributed version control system that is designed to handle everything from small to very large projects with speed and efficiency. It is used by millions of developers around the world to collaborate on software projects. Git is a distributed version control system, which means that you can <a href=\"https:\/\/webkul.com\/blog\/how-to-install-and-configure-git\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":530,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1496,305],"tags":[1737,7767],"class_list":["post-383235","post","type-post","status-publish","format-standard","hentry","category-cs-cart","category-opencart","tag-git","tag-github"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Git: An Introduction to Installation and Configuration - Webkul Blog<\/title>\n<meta name=\"description\" content=\"This guide will teach you the basics of Git, including repository, add files, commit changes, and push changes to a remote server.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/how-to-install-and-configure-git\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Git: An Introduction to Installation and Configuration - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"This guide will teach you the basics of Git, including repository, add files, commit changes, and push changes to a remote server.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/how-to-install-and-configure-git\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-05-30T08:43:45+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-05-30T08:48:23+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-og.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Yash Gupta\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Yash Gupta\" \/>\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:\/\/webkul.com\/blog\/how-to-install-and-configure-git\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-install-and-configure-git\/\"},\"author\":{\"name\":\"Yash Gupta\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/9c34caa3f4c420c0d8438a50b087ebae\"},\"headline\":\"Git: An Introduction to Installation and Configuration\",\"datePublished\":\"2023-05-30T08:43:45+00:00\",\"dateModified\":\"2023-05-30T08:48:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-install-and-configure-git\/\"},\"wordCount\":857,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"keywords\":[\"GIT\",\"Github\"],\"articleSection\":[\"Cs Cart\",\"opencart\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-install-and-configure-git\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-install-and-configure-git\/\",\"url\":\"https:\/\/webkul.com\/blog\/how-to-install-and-configure-git\/\",\"name\":\"Git: An Introduction to Installation and Configuration - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"datePublished\":\"2023-05-30T08:43:45+00:00\",\"dateModified\":\"2023-05-30T08:48:23+00:00\",\"description\":\"This guide will teach you the basics of Git, including repository, add files, commit changes, and push changes to a remote server.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-install-and-configure-git\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-install-and-configure-git\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-install-and-configure-git\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Git: An Introduction to Installation and Configuration\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/9c34caa3f4c420c0d8438a50b087ebae\",\"name\":\"Yash Gupta\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f40fe01c9ce421fdc497c9d9b886fdc92e4a8c64b7703708c68717d22db539d5?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/f40fe01c9ce421fdc497c9d9b886fdc92e4a8c64b7703708c68717d22db539d5?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Yash Gupta\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/yashgupta-wp766\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Git: An Introduction to Installation and Configuration - Webkul Blog","description":"This guide will teach you the basics of Git, including repository, add files, commit changes, and push changes to a remote server.","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:\/\/webkul.com\/blog\/how-to-install-and-configure-git\/","og_locale":"en_US","og_type":"article","og_title":"Git: An Introduction to Installation and Configuration - Webkul Blog","og_description":"This guide will teach you the basics of Git, including repository, add files, commit changes, and push changes to a remote server.","og_url":"https:\/\/webkul.com\/blog\/how-to-install-and-configure-git\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2023-05-30T08:43:45+00:00","article_modified_time":"2023-05-30T08:48:23+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-og.png","type":"image\/png"}],"author":"Yash Gupta","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Yash Gupta","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/how-to-install-and-configure-git\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/how-to-install-and-configure-git\/"},"author":{"name":"Yash Gupta","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/9c34caa3f4c420c0d8438a50b087ebae"},"headline":"Git: An Introduction to Installation and Configuration","datePublished":"2023-05-30T08:43:45+00:00","dateModified":"2023-05-30T08:48:23+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-install-and-configure-git\/"},"wordCount":857,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"keywords":["GIT","Github"],"articleSection":["Cs Cart","opencart"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/how-to-install-and-configure-git\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/how-to-install-and-configure-git\/","url":"https:\/\/webkul.com\/blog\/how-to-install-and-configure-git\/","name":"Git: An Introduction to Installation and Configuration - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"datePublished":"2023-05-30T08:43:45+00:00","dateModified":"2023-05-30T08:48:23+00:00","description":"This guide will teach you the basics of Git, including repository, add files, commit changes, and push changes to a remote server.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/how-to-install-and-configure-git\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/how-to-install-and-configure-git\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/how-to-install-and-configure-git\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Git: An Introduction to Installation and Configuration"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/9c34caa3f4c420c0d8438a50b087ebae","name":"Yash Gupta","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/f40fe01c9ce421fdc497c9d9b886fdc92e4a8c64b7703708c68717d22db539d5?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f40fe01c9ce421fdc497c9d9b886fdc92e4a8c64b7703708c68717d22db539d5?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Yash Gupta"},"url":"https:\/\/webkul.com\/blog\/author\/yashgupta-wp766\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/383235","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/530"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=383235"}],"version-history":[{"count":18,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/383235\/revisions"}],"predecessor-version":[{"id":384372,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/383235\/revisions\/384372"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=383235"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=383235"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=383235"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}