{"id":32037,"date":"2017-06-22T23:01:40","date_gmt":"2017-06-22T15:01:40","guid":{"rendered":"https:\/\/www.hongkiat.com\/blog\/?p=32037"},"modified":"2017-10-31T20:28:40","modified_gmt":"2017-10-31T12:28:40","slug":"manage-git-github-atom","status":"publish","type":"post","link":"https:\/\/www.hongkiat.com\/blog\/manage-git-github-atom\/","title":{"rendered":"How to Manage Git and GitHub Projects with Atom"},"content":{"rendered":"<p>Great news for my developer friends; <strong>Git and GitHub integration<\/strong> <a href=\"https:\/\/blog.atom.io\/2017\/06\/13\/atom-1-18.html\" target=\"_blank\">have been just shipped<\/a> with the new Atom release. The new feature was <a href=\"https:\/\/blog.atom.io\/2017\/05\/16\/git-and-github-integration-comes-to-atom.html\" target=\"_blank\">available as a beta<\/a> for a while but now with Atom 1.18, it\u2019s ready for use to the general public as well. From now on, you can <strong>perform common Git and GitHub operations<\/strong> without leaving the code editor.<\/p>\n<p class=\"recommended_top\">\n\t\t\t\t\t<strong>Read Also:<\/strong>\u00a0\n\t\t\t\t\t<a target=\"_blank\" href=\"https:\/\/www.hongkiat.com\/blog\/atom-code-editor\/\">A Look Into Atom: Github\u2019s New Code Editor<\/a>\n\t\t\t\t<\/p>\n<p>As Atom started  as <strong>GitHub\u2019s internal tool<\/strong>, the step of integrating Git and GitHub is not super-surprising, however it will further <strong>improve Atom\u2019s development workflow<\/strong> for sure. With the new release, Atom also strengthens its position in the code editor scene, as Visual Studio Code has already <a href=\"https:\/\/www.hongkiat.com\/blog\/version-control-git-vs-code\/\">offered the same feature<\/a> for a while.<\/p>\n<figure><a href=\"https:\/\/github.atom.io\/\" target=\"_blank\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/manage-git-github-atom\/atom-with-github.jpg\" width=\"1000\" height=\"569\" alt=\"Atom with GitHub\"><\/a><\/figure>\n<h2>Initialize a Git repository<\/h2>\n<p>Atom got two new tabs, <strong>one for Git<\/strong> and <strong>another for GitHub<\/strong>, through which you can handle your Git operations. You can access them either by clicking the <strong><code>View &gt; Toggle Git Tab \/ Toggle GitHub Tab<\/code> menus in the top menu bar<\/strong>, or by clicking the little <span class=\"key\">&gt;<\/span> hover icon on the right-hand side of the editor pane.<\/p>\n<p>(If your top menu bar is hidden you can reveal it by pressing the <span class=\"key\">Alt<\/span> key.)<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/manage-git-github-atom\/open-git-tab.gif\" width=\"850\" height=\"565\" alt=\"Open Git tab\"><\/figure>\n<p>You can also use the following <strong>keyboard shortcuts<\/strong> to access the tabs:<\/p>\n<ul>\n<li><strong>Git Tab:<\/strong> <span class=\"key\">Ctrl<\/span> + <span class=\"key\">Shift<\/span> + <span class=\"key\">9<\/span><\/li>\n<li><strong>GitHub Tab:<\/strong> <span class=\"key\">Ctrl<\/span> + <span class=\"key\">Shift<\/span> + <span class=\"key\">8<\/span><\/li>\n<\/ul>\n<p>Click the <strong><code>Create repository<\/code> button<\/strong> and choose the folder where you want your repo to be saved. Finally, <strong>click the <code>+Init<\/code> button<\/strong>.<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/manage-git-github-atom\/init-git-repo.jpg\" width=\"800\" height=\"496\" alt=\"Init Git repo\"><\/figure>\n<p>And that\u2019s all, your <strong>Git repository has been initialized<\/strong> without having to touch the command line. This is how the <strong>starter screen<\/strong> of an empty Git repo looks like:<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/manage-git-github-atom\/repo-starter-screen.jpg\" width=\"800\" height=\"496\" alt=\"Starter screen of Git repo\"><\/figure>\n<p>As you can see, the layout is as convenient as it can be. You can see the <strong>staged and unstaged changes<\/strong> under each other, and <strong>make a commit<\/strong> at any time. Plus, you can <strong>switch the Git tab on and off<\/strong> by simply hitting the little <span class=\"key\">&gt;<\/span> icon.<\/p>\n<p>Although the \u201cProject\u201d pane on the left-hand side doesn\u2019t show it, the repo, as it should, <strong>contains the hidden <code>.git<\/code> folder<\/strong> with your Git settings.<\/p>\n<h2>Stage changes<\/h2>\n<p>I quickly created two test files, <code>index.html<\/code> and <code>style.css<\/code>, to see <strong>how staging works<\/strong>.<\/p>\n<p>Atom puts both files into the <strong>\u201cUnstaged Changes\u201d<\/strong> section in the Git pane on the right. And, in the \u201cProject\u201d pane on the left, the names of the unstaged files <strong>appear in green<\/strong>.<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/manage-git-github-atom\/unstaged-changes.jpg\" width=\"800\" height=\"496\" alt=\"Unstaged changes\"><\/figure>\n<p>There are <strong>three ways<\/strong> you can stage the changes:<\/p>\n<ol>\n<li><strong>Stage File<\/strong> \u2013 stages only one individual file<\/li>\n<li><strong>Stage Selection<\/strong> \u2013 stages a part of a particular file<\/li>\n<li><strong>Stage All<\/strong> \u2013 stages all unstaged files<\/li>\n<\/ol>\n<h3>Stage an individual file or selection<\/h3>\n<p>If you want to stage only one file then just <strong>click on the file name<\/strong> in the \u201cUnstaged Changes\u201d section. A new tab will open up in the editor pane where you can choose if you want to <strong>stage the whole file<\/strong> (<code>Stage File<\/code>) or <strong>only a selection of it<\/strong> (<code>Stage Selection<\/code>).<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/manage-git-github-atom\/stage-individual-file.jpg\" width=\"800\" height=\"496\" alt=\"Stage individual file\"><\/figure>\n<h3>Stage all unstaged files<\/h3>\n<p>If you want to stage <strong>all unstaged files at once<\/strong> just click the <code>Stage All<\/code> menu on the top-right corner of the Git tab.<\/p>\n<p>The staged files are <strong>moved to the \u201cStaged Changes\u201d section<\/strong>. And, if you change your mind you can <strong>unstage them<\/strong> by clicking the <code>Unstage All<\/code> menu at top of the \u201cStaged Changes\u201d section.<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/manage-git-github-atom\/staged-changes.jpg\" width=\"800\" height=\"496\" alt=\"Staged changes\"><\/figure>\n<h2>Commit changes<\/h2>\n<p>The \u201cStage Changes\u201d section is basically your <strong><a href=\"https:\/\/git-scm.com\/book\/en\/v2\/Getting-Started-Git-Basics#_the_three_states\" target=\"_blank\" rel=\"nofollow\">staging area<\/a><\/strong>. When you reach a milestone in development you need to commit the changes. By committing, you <strong>save the momentary state of the project<\/strong> into the Git version control system so that you can return to it (if you want) without losing anything.<\/p>\n<p>To commit your staging area, <strong>type a commit message<\/strong> (that shortly describes the changes you made since the last commit) into the <code>Commit message<\/code> box, and click the <span class=\"key\">Commit<\/span> button.<\/p>\n<p>As a result, both the \u201cUnstaged Changes\u201d and \u201cStaged Changes\u201d section <strong>will be cleared<\/strong> and the color of file names in the \u201cProject\u201d pane will be <strong>changed back to white<\/strong>.<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/manage-git-github-atom\/clear-staging-area.jpg\" width=\"800\" height=\"496\" alt=\"Clear staging area\"><\/figure>\n<h2>Other Git operations<\/h2>\n<p>There are a bunch of other Git operations you can also perform right from the Atom editor. For instance, you can <strong>create a new branch<\/strong> by clicking on the branch name at the bottom of the Git tab. Here, you can also <strong>switch between the different branches<\/strong>.<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/manage-git-github-atom\/create-new-branch.gif\" width=\"850\" height=\"565\" alt=\"Create new branch\"><\/figure>\n<p>However, <strong>not all Git operations are available from Atom yet<\/strong>. For instance, you can\u2019t delete branches, or make configurations. To perform these tasks, you still have to <strong>use the command line<\/strong>. Atom\u2019s Git integration is still very new, so hopefully, support will be added to these <strong>less frequently used operations<\/strong> in the future.<\/p>\n<p>You can access a list of all Git-related features <strong>via the Command Palette<\/strong> by using the <span class=\"key\">Ctrl<\/span> + <span class=\"key\">Shift<\/span> + <span class=\"key\">P<\/span> key binding and <strong>typing \u201cGit\u201d<\/strong> into it.<\/p>\n<h2>Clone a GitHub repository<\/h2>\n<p>Atom\u2019s new Git integration feature doesn\u2019t only work locally but you can <strong>clone a GitHub repository<\/strong> as well.<\/p>\n<p>To do so, <strong>open the Command Palette<\/strong> by hitting <span class=\"key\">Ctrl<\/span> + <span class=\"key\">Shift<\/span> + <span class=\"key\">P<\/span> and <strong>select the <code>GitHub: Clone<\/code> command<\/strong>. Then, add the URL where you want to clone from (the URL of the GitHub repo) and the folder where you want to clone the repo into. Finally, <strong>click the <span class=\"key\">Clone<\/span> button<\/strong>.<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/manage-git-github-atom\/clone-github-repo.gif\" width=\"850\" height=\"565\" alt=\"Clone GitHub repo\"><\/figure>\n<h2>Authorize GitHub for Atom<\/h2>\n<p>To <strong>make changes in a GitHub project<\/strong>, you need to <strong>authorize GitHub for Atom<\/strong>. Follow the instructions you see inside Atom\u2019s GitHub tab. First, visit the <code><a href=\"http:\/\/github.atom.io\/login\" target=\"_blank\">github.atom.io\/login<\/a><\/code> URL and <strong>sign in to your GitHub account<\/strong>. Here, you can <strong>generate a token<\/strong> with which you can perform the authorization.<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/manage-git-github-atom\/authorize-github-for-atom.jpg\" width=\"800\" height=\"565\" alt=\"Authorize GitHub for Atom\"><\/figure>\n<p><strong>Enter the authorization token<\/strong> into the input field you can see in Atom\u2019s GitHub tab and <strong>log in to your account<\/strong>.<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/manage-git-github-atom\/enter-token.jpg\" width=\"800\" height=\"532\" alt=\"Enter authorization token\"><\/figure>\n<p>From here, you can access the <strong>three most common GitHub operations<\/strong>: <strong>fetch, push, and pull requests<\/strong> by clicking the down arrow icon at the bottom of the GitHub tab.<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/manage-git-github-atom\/atom-github-operations.gif\" width=\"850\" height=\"565\" alt=\"GitHub operations available in Atom\"><\/figure>\n<p class=\"recommended_top\">\n\t\t\t\t\t<strong>Read Also:<\/strong>\u00a0\n\t\t\t\t\t<a target=\"_blank\" href=\"https:\/\/www.hongkiat.com\/blog\/add-custom-code-snippets-atom\/\">How to Add Custom Code Snippets to Atom<\/a>\n\t\t\t\t<\/p>","protected":false},"excerpt":{"rendered":"<p>Great news for my developer friends; Git and GitHub integration have been just shipped with the new Atom release. The new feature was available as a beta for a while but now with Atom 1.18, it\u2019s ready for use to the general public as well. From now on, you can perform common Git and GitHub&hellip;<\/p>\n","protected":false},"author":146,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[3392],"tags":[3028,2726],"topic":[4520],"class_list":["entry-content","is-maxi"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v22.8 (Yoast SEO v27.6) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Managing Git and GitHub Projects with Atom [Guide]<\/title>\n<meta name=\"description\" content=\"Great news for my developer friends; Git and GitHub integration have been just shipped with the new Atom release. The new feature was available as a beta\" \/>\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.hongkiat.com\/blog\/manage-git-github-atom\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Manage Git and GitHub Projects with Atom\" \/>\n<meta property=\"og:description\" content=\"Great news for my developer friends; Git and GitHub integration have been just shipped with the new Atom release. The new feature was available as a beta\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.hongkiat.com\/blog\/manage-git-github-atom\/\" \/>\n<meta property=\"og:site_name\" content=\"Hongkiat\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/hongkiatcom\" \/>\n<meta property=\"article:published_time\" content=\"2017-06-22T15:01:40+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2017-10-31T12:28:40+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/assets.hongkiat.com\/uploads\/manage-git-github-atom\/atom-with-github.jpg\" \/>\n<meta name=\"author\" content=\"Anna Monus\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@hongkiat\" \/>\n<meta name=\"twitter:site\" content=\"@hongkiat\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Anna Monus\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/manage-git-github-atom\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/manage-git-github-atom\\\/\"},\"author\":{\"name\":\"Anna Monus\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/person\\\/a601053a0ab457901e00cdc83bd5359e\"},\"headline\":\"How to Manage Git and GitHub Projects with Atom\",\"datePublished\":\"2017-06-22T15:01:40+00:00\",\"dateModified\":\"2017-10-31T12:28:40+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/manage-git-github-atom\\\/\"},\"wordCount\":953,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/manage-git-github-atom\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/manage-git-github-atom\\\/atom-with-github.jpg\",\"keywords\":[\"Atom\",\"GitHub\"],\"articleSection\":[\"Coding\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/manage-git-github-atom\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/manage-git-github-atom\\\/\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/manage-git-github-atom\\\/\",\"name\":\"Managing Git and GitHub Projects with Atom [Guide]\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/manage-git-github-atom\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/manage-git-github-atom\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/manage-git-github-atom\\\/atom-with-github.jpg\",\"datePublished\":\"2017-06-22T15:01:40+00:00\",\"dateModified\":\"2017-10-31T12:28:40+00:00\",\"description\":\"Great news for my developer friends; Git and GitHub integration have been just shipped with the new Atom release. The new feature was available as a beta\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/manage-git-github-atom\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/manage-git-github-atom\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/manage-git-github-atom\\\/#primaryimage\",\"url\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/manage-git-github-atom\\\/atom-with-github.jpg\",\"contentUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/manage-git-github-atom\\\/atom-with-github.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/manage-git-github-atom\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Manage Git and GitHub Projects with Atom\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\",\"name\":\"Hongkiat\",\"description\":\"Tech and Design Tips\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\",\"name\":\"Hongkiat.com\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wp-content\\\/uploads\\\/hkdc-logo-rect-yoast.jpg\",\"contentUrl\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wp-content\\\/uploads\\\/hkdc-logo-rect-yoast.jpg\",\"width\":1200,\"height\":799,\"caption\":\"Hongkiat.com\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/hongkiatcom\",\"https:\\\/\\\/x.com\\\/hongkiat\",\"https:\\\/\\\/www.pinterest.com\\\/hongkiat\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/person\\\/a601053a0ab457901e00cdc83bd5359e\",\"name\":\"Anna Monus\",\"description\":\"Anna is Technical Editor and Writer for Hongkiat.com. She mainly covers front-end frameworks, web standards, accessibility, WordPress development, and UX design.\",\"sameAs\":[\"https:\\\/\\\/www.annalytic.com\\\/\"],\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/author\\\/anna_monus\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Managing Git and GitHub Projects with Atom [Guide]","description":"Great news for my developer friends; Git and GitHub integration have been just shipped with the new Atom release. The new feature was available as a beta","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.hongkiat.com\/blog\/manage-git-github-atom\/","og_locale":"en_US","og_type":"article","og_title":"How to Manage Git and GitHub Projects with Atom","og_description":"Great news for my developer friends; Git and GitHub integration have been just shipped with the new Atom release. The new feature was available as a beta","og_url":"https:\/\/www.hongkiat.com\/blog\/manage-git-github-atom\/","og_site_name":"Hongkiat","article_publisher":"https:\/\/www.facebook.com\/hongkiatcom","article_published_time":"2017-06-22T15:01:40+00:00","article_modified_time":"2017-10-31T12:28:40+00:00","og_image":[{"url":"https:\/\/assets.hongkiat.com\/uploads\/manage-git-github-atom\/atom-with-github.jpg","type":"","width":"","height":""}],"author":"Anna Monus","twitter_card":"summary_large_image","twitter_creator":"@hongkiat","twitter_site":"@hongkiat","twitter_misc":{"Written by":"Anna Monus","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.hongkiat.com\/blog\/manage-git-github-atom\/#article","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/manage-git-github-atom\/"},"author":{"name":"Anna Monus","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/person\/a601053a0ab457901e00cdc83bd5359e"},"headline":"How to Manage Git and GitHub Projects with Atom","datePublished":"2017-06-22T15:01:40+00:00","dateModified":"2017-10-31T12:28:40+00:00","mainEntityOfPage":{"@id":"https:\/\/www.hongkiat.com\/blog\/manage-git-github-atom\/"},"wordCount":953,"commentCount":2,"publisher":{"@id":"https:\/\/www.hongkiat.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/manage-git-github-atom\/#primaryimage"},"thumbnailUrl":"https:\/\/assets.hongkiat.com\/uploads\/manage-git-github-atom\/atom-with-github.jpg","keywords":["Atom","GitHub"],"articleSection":["Coding"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.hongkiat.com\/blog\/manage-git-github-atom\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.hongkiat.com\/blog\/manage-git-github-atom\/","url":"https:\/\/www.hongkiat.com\/blog\/manage-git-github-atom\/","name":"Managing Git and GitHub Projects with Atom [Guide]","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.hongkiat.com\/blog\/manage-git-github-atom\/#primaryimage"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/manage-git-github-atom\/#primaryimage"},"thumbnailUrl":"https:\/\/assets.hongkiat.com\/uploads\/manage-git-github-atom\/atom-with-github.jpg","datePublished":"2017-06-22T15:01:40+00:00","dateModified":"2017-10-31T12:28:40+00:00","description":"Great news for my developer friends; Git and GitHub integration have been just shipped with the new Atom release. The new feature was available as a beta","breadcrumb":{"@id":"https:\/\/www.hongkiat.com\/blog\/manage-git-github-atom\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.hongkiat.com\/blog\/manage-git-github-atom\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hongkiat.com\/blog\/manage-git-github-atom\/#primaryimage","url":"https:\/\/assets.hongkiat.com\/uploads\/manage-git-github-atom\/atom-with-github.jpg","contentUrl":"https:\/\/assets.hongkiat.com\/uploads\/manage-git-github-atom\/atom-with-github.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/www.hongkiat.com\/blog\/manage-git-github-atom\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.hongkiat.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Manage Git and GitHub Projects with Atom"}]},{"@type":"WebSite","@id":"https:\/\/www.hongkiat.com\/blog\/#website","url":"https:\/\/www.hongkiat.com\/blog\/","name":"Hongkiat","description":"Tech and Design Tips","publisher":{"@id":"https:\/\/www.hongkiat.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.hongkiat.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.hongkiat.com\/blog\/#organization","name":"Hongkiat.com","url":"https:\/\/www.hongkiat.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.hongkiat.com\/blog\/wp-content\/uploads\/hkdc-logo-rect-yoast.jpg","contentUrl":"https:\/\/www.hongkiat.com\/blog\/wp-content\/uploads\/hkdc-logo-rect-yoast.jpg","width":1200,"height":799,"caption":"Hongkiat.com"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/hongkiatcom","https:\/\/x.com\/hongkiat","https:\/\/www.pinterest.com\/hongkiat\/"]},{"@type":"Person","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/person\/a601053a0ab457901e00cdc83bd5359e","name":"Anna Monus","description":"Anna is Technical Editor and Writer for Hongkiat.com. She mainly covers front-end frameworks, web standards, accessibility, WordPress development, and UX design.","sameAs":["https:\/\/www.annalytic.com\/"],"url":"https:\/\/www.hongkiat.com\/blog\/author\/anna_monus\/"}]}},"jetpack_featured_media_url":"https:\/\/","jetpack_shortlink":"https:\/\/wp.me\/p4uxU-8kJ","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/32037","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/users\/146"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/comments?post=32037"}],"version-history":[{"count":1,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/32037\/revisions"}],"predecessor-version":[{"id":32038,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/32037\/revisions\/32038"}],"wp:attachment":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/media?parent=32037"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/categories?post=32037"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/tags?post=32037"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/topic?post=32037"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}