{"id":69152,"date":"2021-02-24T14:15:18","date_gmt":"2021-02-24T19:15:18","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/?p=69152"},"modified":"2021-07-28T11:53:58","modified_gmt":"2021-07-28T15:53:58","slug":"magit","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/magit\/","title":{"rendered":"Emacs &#8220;Magit&#8221; is Git Magic"},"content":{"rendered":"<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"538\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/07\/Emacs-Magit-1-1-1024x538.png\" alt=\"Emacs Magit is Git Magic\" class=\"wp-image-79674\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/07\/Emacs-Magit-1-1-1024x538.png 1024w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/07\/Emacs-Magit-1-1-300x158.png 300w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/07\/Emacs-Magit-1-1-768x403.png 768w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/07\/Emacs-Magit-1-1.png 1200w\" sizes=\"auto, (min-width: 1360px) 876px, (min-width: 960px) calc(61.58vw + 51px), calc(100vw - 80px)\" \/><\/figure>\n\n\n\n<p>\nThe question about Git is \u201ccommand line\u201d or \u201cGUI\u201d?  Most popular text editors and integrated development environments (IDEs) now integrate the basic version control feature set into the application itself.  For others, they will complete their work in the text editor and switch over to the terminal emulator to run their favorite Git commands.  But what are your options for integrating Git into the Emacs text editor?  There are some basic version control features built in, but many users are discovering that the Magit git client for Emacs is a dream version control manager for productivity magic. This article will provide you with everything you need to get up and running with Magit in Emacs.\n<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><a href=\"#what-is-magit\">What is Magit?<\/a>\n<ul>\n<li><a href=\"#how-install-magit\">How to Install Magit<\/a><\/li>\n<\/ul>\n<\/li><li><a href=\"#basic-commands\">Basic Commands<\/a>\n<ul>\n<li><a href=\"#getting-help\">Getting Help<\/a><\/li>\n<li><a href=\"#stage-and-commit\">Stage and Commit<\/a><\/li>\n<\/ul>\n<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"what-is-magit\">What is Magit?<\/h2>\n\n\n\n<p>\nIn the most basic sense, Magit is a plug-in for Emacs.  But more than that, it\u2019s like an entire application unto itself.  The focus of Magit is to masterfully integrate all of the Git functionality you would need so you would not require a switch over to command line or graphical Git application.\n<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"how-install-magit\">How to Install Magit<\/h3>\n\n\n\n<p>\nInstalling Magit is pretty simple.  You can use the default <code>package-install<\/code> command in Emacs.  However, you must make sure that you have the Melpa package manager archives available to you first.  If you have not integrated the Melpa package archive already, just add this to your system configuration:\n<\/p>\n\n\n\n<pre id=\"org98b1041\" class=\"wp-block-preformatted example\">(require 'package)\n(add-to-list 'package-archives '(\"melpa\" . \"https:\/\/melpa.org\/packages\/\") t)\n;; Comment\/uncomment this line to enable MELPA Stable if desired.  See `package-archive-priorities`\n;; and `package-pinned-packages`. Most users will not need or want to do this.\n;;(add-to-list 'package-archives '(\"melpa-stable\" . \"https:\/\/stable.melpa.org\/packages\/\") t)\n(package-initialize)\n<\/pre>\n\n\n\n<p>\nTo make sure the Melpa package is enabled, you can evaluate the lisp code above, or place it in your init file and restart Emacs.  You may also want to run the <code>package-refresh-contents<\/code> function to make sure your package archives are up to date and available.\n<\/p>\n\n\n\n<p>\nWhen that\u2019s done, you can run the <code>package-install<\/code> directive as follows:\n<\/p>\n\n\n\n<pre id=\"org0821e98\" class=\"wp-block-preformatted example\">M-x package-install &lt;RET&gt; magit &lt;RET&gt;\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"basic-commands\">Basic Commands<\/h2>\n\n\n\n<p>\nNow you should have a running Magit client available in your Emacs configuration.\n<\/p>\n\n\n\n<p>\nTo start going quickly, you can visit a file that is already version control and run the command to open Magit (to follow), or, if the working directory you visited in not under Git version control, Magit will create a Git repository at the visited location.  Open Magit with the following:\n<\/p>\n\n\n\n<pre id=\"org8dc3909\" class=\"wp-block-preformatted example\">C-x g\n<\/pre>\n\n\n\n<p>\nYou will be prompted, in another window, with a list of staged and unstaged changes and recent commits.  This is main Magit menu.\n<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"getting-help\">Getting Help<\/h3>\n\n\n\n<p>\nBefore doing anything else, make sure you know how to get help with Magit by pressing <code>h<\/code>.  This will give you a listing of all the commands you can run with Magit.  You\u2019ll notice that they match up with just about every Git command you would need.\n<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"stage-and-commit\">Stage and Commit<\/h3>\n\n\n\n<p>\nTo stage and unstage use the <code>s<\/code> and <code>u<\/code> keys with your cursor (or, \u201cpoint\u201d) over the file you want to stage or unstage.  When ready to commit, just click <code>c<\/code>.  Then, when prompted click <code>c<\/code> again to put in a commit message.  All done, click <code>C-c C-c<\/code> to complete your commit.\n<\/p>\n\n\n\n<hr class=\"wp-block-separator\">\n\n\n\n<p> As you get more comfortable moving in and out of Magit for all of your Git needs, you will take advantage of more advanced options.  But for now, those are the basics of using the Magit Git client for Emacs. <\/p>\n\n\n<div class=\"jumbotron\"><p>Experience full control over your server environment and deploy the best operating and management systems that fit your needs with our reliable <a href=\"https:\/\/www.inmotionhosting.com\/cloud-vps\">Cloud VPS Hosting<\/a>!<\/p><\/div>\n","protected":false},"excerpt":{"rendered":"<p>The question about Git is &#8220;command line&#8221; or &#8220;GUI&#8221;? Most popular text editors and integrated development environments (IDEs) now integrate the basic version control feature set into the application itself. For others, they will complete their work in the text editor and switch over to the terminal emulator to run their favorite Git commands. But<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/magit\/\"> Read More ><\/a><\/p>\n","protected":false},"author":17,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[4396],"tags":[],"class_list":["post-69152","post","type-post","status-publish","format-standard","hentry","category-emacs"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Git Magic With Magit For Emacs<\/title>\n<meta name=\"description\" content=\"You can use a Git GUI or command line, but Magit for Emacs gives you the best of both worlds. Run your Git world right from within Emacs.\" \/>\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.inmotionhosting.com\/support\/edu\/emacs\/magit\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Git Magic With Magit For Emacs\" \/>\n<meta property=\"og:description\" content=\"You can use a Git GUI or command line, but Magit for Emacs gives you the best of both worlds. Run your Git world right from within Emacs.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/magit\/\" \/>\n<meta property=\"og:site_name\" content=\"InMotion Hosting Support Center\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/inmotionhosting\/\" \/>\n<meta property=\"article:published_time\" content=\"2021-02-24T19:15:18+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-07-28T15:53:58+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/07\/Emacs-Magit-1-1.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=\"Christopher Maiorana\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:site\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Christopher Maiorana\" \/>\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\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/magit\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/magit\/\"},\"author\":{\"name\":\"Christopher Maiorana\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f\"},\"headline\":\"Emacs &#8220;Magit&#8221; is Git Magic\",\"datePublished\":\"2021-02-24T19:15:18+00:00\",\"dateModified\":\"2021-07-28T15:53:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/magit\/\"},\"wordCount\":528,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/magit\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/07\/Emacs-Magit-1-1-1024x538.png\",\"articleSection\":[\"Emacs\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/magit\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/magit\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/magit\/\",\"name\":\"Git Magic With Magit For Emacs\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/magit\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/magit\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/07\/Emacs-Magit-1-1-1024x538.png\",\"datePublished\":\"2021-02-24T19:15:18+00:00\",\"dateModified\":\"2021-07-28T15:53:58+00:00\",\"description\":\"You can use a Git GUI or command line, but Magit for Emacs gives you the best of both worlds. Run your Git world right from within Emacs.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/magit\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/magit\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/magit\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/07\/Emacs-Magit-1-1.png\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/07\/Emacs-Magit-1-1.png\",\"width\":1200,\"height\":630},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/magit\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Emacs &#8220;Magit&#8221; is Git Magic\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"name\":\"InMotion Hosting Support Center\",\"description\":\"Web Hosting Support &amp; Tutorials\",\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\",\"name\":\"InMotion Hosting\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"width\":696,\"height\":696,\"caption\":\"InMotion Hosting\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/inmotionhosting\/\",\"https:\/\/x.com\/InMotionHosting\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f\",\"name\":\"Christopher Maiorana\",\"description\":\"Christopher Maiorana joined the InMotion community team in 2015 and regularly dispenses tips and tricks in the Support Center, Community Q&A, and the InMotion Hosting Blog.\",\"sameAs\":[\"https:\/\/www.linkedin.com\/in\/chris-m-4623144b\/\"],\"url\":\"https:\/\/www.inmotionhosting.com\/support\/author\/christopherm\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Git Magic With Magit For Emacs","description":"You can use a Git GUI or command line, but Magit for Emacs gives you the best of both worlds. Run your Git world right from within Emacs.","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.inmotionhosting.com\/support\/edu\/emacs\/magit\/","og_locale":"en_US","og_type":"article","og_title":"Git Magic With Magit For Emacs","og_description":"You can use a Git GUI or command line, but Magit for Emacs gives you the best of both worlds. Run your Git world right from within Emacs.","og_url":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/magit\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2021-02-24T19:15:18+00:00","article_modified_time":"2021-07-28T15:53:58+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/07\/Emacs-Magit-1-1.png","type":"image\/png"}],"author":"Christopher Maiorana","twitter_card":"summary_large_image","twitter_creator":"@InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"Christopher Maiorana","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/magit\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/magit\/"},"author":{"name":"Christopher Maiorana","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f"},"headline":"Emacs &#8220;Magit&#8221; is Git Magic","datePublished":"2021-02-24T19:15:18+00:00","dateModified":"2021-07-28T15:53:58+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/magit\/"},"wordCount":528,"commentCount":0,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/magit\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/07\/Emacs-Magit-1-1-1024x538.png","articleSection":["Emacs"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/magit\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/magit\/","url":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/magit\/","name":"Git Magic With Magit For Emacs","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/magit\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/magit\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/07\/Emacs-Magit-1-1-1024x538.png","datePublished":"2021-02-24T19:15:18+00:00","dateModified":"2021-07-28T15:53:58+00:00","description":"You can use a Git GUI or command line, but Magit for Emacs gives you the best of both worlds. Run your Git world right from within Emacs.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/magit\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/magit\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/magit\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/07\/Emacs-Magit-1-1.png","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/07\/Emacs-Magit-1-1.png","width":1200,"height":630},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/magit\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"Emacs &#8220;Magit&#8221; is Git Magic"}]},{"@type":"WebSite","@id":"https:\/\/www.inmotionhosting.com\/support\/#website","url":"https:\/\/www.inmotionhosting.com\/support\/","name":"InMotion Hosting Support Center","description":"Web Hosting Support &amp; Tutorials","publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.inmotionhosting.com\/support\/#organization","name":"InMotion Hosting","url":"https:\/\/www.inmotionhosting.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","width":696,"height":696,"caption":"InMotion Hosting"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/inmotionhosting\/","https:\/\/x.com\/InMotionHosting"]},{"@type":"Person","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f","name":"Christopher Maiorana","description":"Christopher Maiorana joined the InMotion community team in 2015 and regularly dispenses tips and tricks in the Support Center, Community Q&A, and the InMotion Hosting Blog.","sameAs":["https:\/\/www.linkedin.com\/in\/chris-m-4623144b\/"],"url":"https:\/\/www.inmotionhosting.com\/support\/author\/christopherm\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"primary_category":{"id":4396,"name":"Emacs","slug":"emacs","link":"https:\/\/www.inmotionhosting.com\/support\/edu\/emacs\/"},"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/69152","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/users\/17"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=69152"}],"version-history":[{"count":4,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/69152\/revisions"}],"predecessor-version":[{"id":79675,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/69152\/revisions\/79675"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=69152"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=69152"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=69152"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}