{"id":17065,"date":"2022-03-04T10:06:22","date_gmt":"2022-03-04T16:06:22","guid":{"rendered":"https:\/\/alphaefficiency.com\/?p=17065"},"modified":"2022-03-04T10:06:22","modified_gmt":"2022-03-04T16:06:22","slug":"git-stop-tracking-file","status":"publish","type":"post","link":"https:\/\/alphaefficiency.com\/git-stop-tracking-file","title":{"rendered":"How to Stop Git Tracking a File"},"content":{"rendered":"<p>Making Git do what we want it to do is not always smooth sailing. Intricacies of .gitignore files can make it quite challenging to navigate your day-to-day commits. One particularly painful issue I have with Git is when I want it to stop tracking specific files without deleting them. I need that file to stay on the server but ignored from my localhost environment.<\/p>\n<p>Just as it is important to track changes to files in Git, it can be equally important not to track them in certain cases so they do not change the scale of the processes you wish to monitor.<\/p>\n<p>This is why, in today\u2019s article, I will explain how my <a href=\"https:\/\/alphaefficiency.com\/web-development-agency-chicago\">web development agency in Chicago<\/a>\u00a0explores ways to\u00a0<strong>stop tracking a file in Git without deleting it<\/strong>. Reading through this entire piece will give you my best practices on how to achieve this, and you\u2019ll upgrade your skill levels to become a better Git Ninja.<\/p>\n<img decoding=\"async\" class=\"alignnone wp-image-28446 size-full\" src=\"https:\/\/alphaefficiency.com\/wp-content\/uploads\/2022\/03\/main-image-How-to-Make-Git-Stop-Tracking-a-File-Without-Deleting-it.png\" alt=\"\" width=\"800\" height=\"500\" srcset=\"https:\/\/alphaefficiency.com\/wp-content\/uploads\/2022\/03\/main-image-How-to-Make-Git-Stop-Tracking-a-File-Without-Deleting-it.png 800w, https:\/\/alphaefficiency.com\/wp-content\/uploads\/2022\/03\/main-image-How-to-Make-Git-Stop-Tracking-a-File-Without-Deleting-it-300x188.png 300w, https:\/\/alphaefficiency.com\/wp-content\/uploads\/2022\/03\/main-image-How-to-Make-Git-Stop-Tracking-a-File-Without-Deleting-it-768x480.png 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\n<h2>What Is a Git Repository?<\/h2>\n<p>A Git repository is a storage for the files in your project that allows you to save as well as have access to different versions of your <a href=\"https:\/\/alphaefficiency.com\/custom-coded-websites\">custom-coded website<\/a>. You can create a new git repository with the <strong>git init<\/strong>\u00a0command or make a clone of the existing repository by running the\u00a0<strong>git clone\u00a0<\/strong>command.<\/p>\n<h3>What Is the Git rm Command?<\/h3>\n<p>This command removes a particular data file or a group of files from a git repository. It can also be used to remove files from the working directory and the staging index. However, you can not use it to remove a file only from the working directory without affecting the staging index.<\/p>\n<h3>What Is a .gitignore GFile?<\/h3>\n<p>Git classifies all the files of the working copy in three ways:<\/p>\n<ul>\n<li aria-level=\"1\"><strong>A tracked file: <\/strong>Tracking files have already been committed or staged.<\/li>\n<li aria-level=\"1\"><strong>An untracked file: <\/strong>Untracked files have not previously been committed or staged.<\/li>\n<li aria-level=\"1\"><strong>An ignored file: <\/strong>A file that has been commanded to be ignored.<\/li>\n<\/ul>\n<p>As you can see, Git labels all the files in the three categories mentioned above. Those files that you told Git to ignore will be stashed in the file called\u00a0<strong>.gitignore<\/strong>. To commit these files, you\u2019ll first need to derive them from the Git repository. The .gitignore will prevent files that Git does not track from being added to the set of files that the version control system is tracking. On the other hand, Git will not stop tracking a file that is already being tracked, even if you add it to .gitignore.<\/p>\n<h2>Reasons To Stop Tracking A File But Not Deleting It<\/h2>\n<p>Before you venture into the world of untracked files, it is essential that you understand how these files work in the Git universe. When you use git commands to ignore a file, it doesn&#8217;t disappear; it still exists in your development project parent directory, but it hasn&#8217;t been added to your repository. These can be any files that you decide to exclude from the repository, such as a\u00a0<strong>Git empty commit<\/strong>, log files, or personal config files.<\/p>\n<p>Why would you want Git stop tracking files if you are not going to delete them? The removal or loss of an untracked Git file can lead to negative consequences. While Git is a powerful tool for data recovery, it has its limitations. For instance, Git doesn&#8217;t maintain a history of untracked files, so once you remove them, there is no way to recover their content.<\/p>\n<p>If you didn&#8217;t do a file backup, accidentally deleting an untracked Git file can result in data loss. Therefore, learning how to stop tracking a file in git without deleting it can be valuable knowledge.<\/p>\n<h2>How to Tell Git to Stop Tracking a File Without Removing It From the Repository<\/h2>\n<p>You may sometimes find it necessary to keep the file you no longer need to track in the Git repository so other members of your team can download it. How to stop Git from tracking a file without deleting it? Regardless of which side of the <strong>GitLab vs GitHub\u00a0<\/strong>debate you are on, you can easily stop tracking a file without deleting it with the<strong>\u00a0git update-index<\/strong>\u00a0command:<\/p>\n<p>git update-index \u2013skip-worktree file1.txt<\/p>\n<p>git status<\/p>\n<p>On branch main<\/p>\n<p>noting to commit, working tree clean<\/p>\n<p>This way, you told Git to update the index while skipping over the specified files. In the example, I skipped over file1.txt and turned the tracking off. That command can also be used separately from the .gitignore file.<\/p>\n<p>You can also achieve the same result by using the\u00a0<strong>git update-index \u2013assume-unchanged<\/strong>\u00a0command. However, you need to<strong>\u00a0<\/strong>proceed with caution here! This approach is used only for large files that are supposed to remain unchanged. Otherwise, you will break the feature\u2019s intended use, and Git will encounter errors while attempting the merger. This is why I recommend using the <strong>\u2013skip-worktree<\/strong>\u00a0command.<\/p>\n<p>Now, all that is left to do is check if the file is still present in the remote repository as well as in our local file system. Let\u2019s see:<\/p>\n<p>git ls-files<\/p>\n<p>.gitignore<\/p>\n<p>file1.txt<\/p>\n<p>file2.txt<\/p>\n<p>ls -a<\/p>\n<p>.\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 .git \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 file1.txt<\/p>\n<p>.. \u00a0 \u00a0 \u00a0 \u00a0 .gitignore \u00a0 \u00a0 file2.txt<\/p>\n<h2>How to Tell Git to Stop Tracking a File and Remove it From the Repository<\/h2>\n<p>To achieve this, you must start by creating a couple of files. After that, you will add them to the index and commit them to the repository. Here is how to do that:<\/p>\n<p>touch file1.txt<\/p>\n<p>touch file2.txt<\/p>\n<p>git add .<\/p>\n<p>git commit -m \u201cInitial commit\u201d<\/p>\n<p>Git will now track all the changes made to these two files. Now, let\u2019s say you want to stop tracking file Git named <em>file1.txt<\/em>. Since it is already in the repository, you need to create a .gitignore file and add the matcher for file1.txt to it. To do so, simply follow these Git commands:<\/p>\n<p>touch .gitignore<\/p>\n<p>echo \u201cfile1.txt\u201d &gt;&gt; .gitignore<\/p>\n<p>git add .gitignore<\/p>\n<p>git commit -m \u201cAdding .gitignore\u201d<\/p>\n<p>Now, let\u2019s make some changes to file1.txt:<\/p>\n<p>echo \u201cnew line\u201d &gt;&gt; file1.txt<\/p>\n<p>git status<\/p>\n<p>Although file1.txt is included in the .gitignore file, Git is still tracking it:<\/p>\n<p>Changes not staged for commit:<\/p>\n<p>(use \u201cgit add &lt;file&gt;\u2026\u201d to update what will be committed)<\/p>\n<p>(use \u201cgit restore &lt;file&gt;\u2026\u201d to discard changes in the working directory)<\/p>\n<p>modified: file1.txt<\/p>\n<p>But file1.txt contains some important configurations, so perhaps you wish to keep it in the parent directory of your local machine while removing it from the remote repository. To tell Git to stop tracking a file and remove it from the Git repository, you will use the\u00a0<strong>git rm<\/strong>\u00a0command:<\/p>\n<p>git rm \u2013cached file1.txt<\/p>\n<p>rm \u2018file1.txt\u2019<\/p>\n<p>Notice that I used the\u00a0<strong>\u2013cached<\/strong> flag here. This tells Git to remove files only from the index. That way, your working directory won\u2019t be affected.<\/p>\n<p>The only thing left to do is to verify that file1.txt is no longer in the Git repository while it is still present in your working tree. for that, you can use the git status command or the following command line:<\/p>\n<p>git ls-files<\/p>\n<p>file2.txt<\/p>\n<p>.gitignore<\/p>\n<p>ls -a<\/p>\n<p>.\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 .git \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 file1.txt<\/p>\n<p>.. \u00a0 \u00a0 \u00a0 \u00a0 .gitignore \u00a0 \u00a0 file2.txt<\/p>\n<h2>How to Stop Tracking an Entire Folder<\/h2>\n<p>You may also need to remove an entire folder from the index. In order to do so, you\u2019ll first need to add the folder name to .gitignore and then run the commands:<\/p>\n<p>git rm \u2013cached -r &lt;folder&gt;<\/p>\n<p>git commit -m \u201c&lt;Message&gt;\u201d<\/p>\n<p>Notice that we\u2019ve added the\u00a0<em>-r<\/em>\u00a0component to the command line. Omitting it would fail the process, so that Git would display the following message:<\/p>\n<p>fatal: not removing \u2018folder\u2019 recursively without -r.<\/p>\n<h2>How to Stop Tracking Multiple Ignored Files<\/h2>\n<p>Next, let\u2019s explore how to remove all files that are currently in .gitignore from the index:<\/p>\n<p>git rm -r \u2013cached .<\/p>\n<p>git add .<\/p>\n<p>git commit -m \u201cRemoves all .gitignore files and folders\u201d<\/p>\n<p>The first line tells Git to remove all the files from the index. The second line re-adds all the files to the index except those in .gitignore, while the third line commits the change.<\/p>\n<h2>Final Thoughts<\/h2>\n<p>Git is an extremely powerful web development tool. However, due to its steep learning curve, I have witnessed many companies struggle with their projects and fail to meet deadlines. I hope that this article helped clarify any possible ambiguities about how to stop Git from tracking files without deleting them from your machine.<\/p>\n<p>Do you have further questions regarding Git file tracking or<strong> Git checkout file from another branch<\/strong>? Feel free to schedule a call with me; I&#8217;d be glad to help you sharpen your Git skills to streamline your workflow and enhance your development projects.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Making Git do what we want it to do is not always smooth sailing. Intricacies of .gitignore files can make it quite challenging to navigate your day-to-day commits. One particularly painful issue I have with Git is when I want it to stop tracking specific files without deleting them. I need that file to stay &hellip; <a href=\"https:\/\/alphaefficiency.com\/git-stop-tracking-file\">Continued<\/a><\/p>\n","protected":false},"author":31,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[354],"tags":[351],"class_list":["post-17065","post","type-post","status-publish","format-standard","hentry","category-web-development","tag-git"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Stop Git Tracking a File | Alpha Efficiency.\u2122<\/title>\n<meta name=\"description\" content=\"Git is used by developers all across the globe. In today\u2019s article, our web development agency explores ways to stop tracking a file in Git.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/alphaefficiency.com\/git-stop-tracking-file\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Stop Git Tracking a File | Alpha Efficiency.\u2122\" \/>\n<meta property=\"og:description\" content=\"Git is used by developers all across the globe. In today\u2019s article, our web development agency explores ways to stop tracking a file in Git.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/alphaefficiency.com\/git-stop-tracking-file\" \/>\n<meta property=\"og:site_name\" content=\"Alpha Efficiency.\u2122\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/facebook.com\/alphaefficiency\" \/>\n<meta property=\"article:published_time\" content=\"2022-03-04T16:06:22+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/alphaefficiency.com\/wp-content\/uploads\/2022\/03\/main-image-How-to-Make-Git-Stop-Tracking-a-File-Without-Deleting-it.png\" \/>\n\t<meta property=\"og:image:width\" content=\"800\" \/>\n\t<meta property=\"og:image:height\" content=\"500\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Brian Dordevic\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@alphaefficiency\" \/>\n<meta name=\"twitter:site\" content=\"@alphaefficiency\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Brian Dordevic\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/alphaefficiency.com\\\/git-stop-tracking-file#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/alphaefficiency.com\\\/git-stop-tracking-file\"},\"author\":{\"name\":\"Brian Dordevic\",\"@id\":\"https:\\\/\\\/alphaefficiency.com\\\/#\\\/schema\\\/person\\\/c0b54b692c44cd01148ff8feabe433b0\"},\"headline\":\"How to Stop Git Tracking a File\",\"datePublished\":\"2022-03-04T16:06:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/alphaefficiency.com\\\/git-stop-tracking-file\"},\"wordCount\":1467,\"image\":{\"@id\":\"https:\\\/\\\/alphaefficiency.com\\\/git-stop-tracking-file#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/alphaefficiency.com\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/main-image-How-to-Make-Git-Stop-Tracking-a-File-Without-Deleting-it.png\",\"keywords\":[\"Git\"],\"articleSection\":[\"Web Development\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/alphaefficiency.com\\\/git-stop-tracking-file\",\"url\":\"https:\\\/\\\/alphaefficiency.com\\\/git-stop-tracking-file\",\"name\":\"How to Stop Git Tracking a File | Alpha Efficiency.\u2122\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/alphaefficiency.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/alphaefficiency.com\\\/git-stop-tracking-file#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/alphaefficiency.com\\\/git-stop-tracking-file#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/alphaefficiency.com\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/main-image-How-to-Make-Git-Stop-Tracking-a-File-Without-Deleting-it.png\",\"datePublished\":\"2022-03-04T16:06:22+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/alphaefficiency.com\\\/#\\\/schema\\\/person\\\/c0b54b692c44cd01148ff8feabe433b0\"},\"description\":\"Git is used by developers all across the globe. In today\u2019s article, our web development agency explores ways to stop tracking a file in Git.\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/alphaefficiency.com\\\/git-stop-tracking-file\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/alphaefficiency.com\\\/git-stop-tracking-file#primaryimage\",\"url\":\"https:\\\/\\\/alphaefficiency.com\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/main-image-How-to-Make-Git-Stop-Tracking-a-File-Without-Deleting-it.png\",\"contentUrl\":\"https:\\\/\\\/alphaefficiency.com\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/main-image-How-to-Make-Git-Stop-Tracking-a-File-Without-Deleting-it.png\",\"width\":800,\"height\":500},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/alphaefficiency.com\\\/#website\",\"url\":\"https:\\\/\\\/alphaefficiency.com\\\/\",\"name\":\"Alpha Efficiency.\u2122\",\"description\":\"Make it. Development and Digital Agency in Chicago.\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/alphaefficiency.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/alphaefficiency.com\\\/#\\\/schema\\\/person\\\/c0b54b692c44cd01148ff8feabe433b0\",\"name\":\"Brian Dordevic\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ea1ae08900ee894b4d15c1ab314cadcd894a8841f9ec9df42ea48a5b9d64bb7e?s=96&d=blank&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ea1ae08900ee894b4d15c1ab314cadcd894a8841f9ec9df42ea48a5b9d64bb7e?s=96&d=blank&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ea1ae08900ee894b4d15c1ab314cadcd894a8841f9ec9df42ea48a5b9d64bb7e?s=96&d=blank&r=g\",\"caption\":\"Brian Dordevic\"},\"sameAs\":[\"https:\\\/\\\/alphaefficiency.com\"],\"url\":\"https:\\\/\\\/alphaefficiency.com\\\/author\\\/briandordevic\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Stop Git Tracking a File | Alpha Efficiency.\u2122","description":"Git is used by developers all across the globe. In today\u2019s article, our web development agency explores ways to stop tracking a file in Git.","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:\/\/alphaefficiency.com\/git-stop-tracking-file","og_locale":"en_US","og_type":"article","og_title":"How to Stop Git Tracking a File | Alpha Efficiency.\u2122","og_description":"Git is used by developers all across the globe. In today\u2019s article, our web development agency explores ways to stop tracking a file in Git.","og_url":"https:\/\/alphaefficiency.com\/git-stop-tracking-file","og_site_name":"Alpha Efficiency.\u2122","article_publisher":"http:\/\/facebook.com\/alphaefficiency","article_published_time":"2022-03-04T16:06:22+00:00","og_image":[{"width":800,"height":500,"url":"https:\/\/alphaefficiency.com\/wp-content\/uploads\/2022\/03\/main-image-How-to-Make-Git-Stop-Tracking-a-File-Without-Deleting-it.png","type":"image\/png"}],"author":"Brian Dordevic","twitter_card":"summary_large_image","twitter_creator":"@alphaefficiency","twitter_site":"@alphaefficiency","twitter_misc":{"Written by":"Brian Dordevic","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/alphaefficiency.com\/git-stop-tracking-file#article","isPartOf":{"@id":"https:\/\/alphaefficiency.com\/git-stop-tracking-file"},"author":{"name":"Brian Dordevic","@id":"https:\/\/alphaefficiency.com\/#\/schema\/person\/c0b54b692c44cd01148ff8feabe433b0"},"headline":"How to Stop Git Tracking a File","datePublished":"2022-03-04T16:06:22+00:00","mainEntityOfPage":{"@id":"https:\/\/alphaefficiency.com\/git-stop-tracking-file"},"wordCount":1467,"image":{"@id":"https:\/\/alphaefficiency.com\/git-stop-tracking-file#primaryimage"},"thumbnailUrl":"https:\/\/alphaefficiency.com\/wp-content\/uploads\/2022\/03\/main-image-How-to-Make-Git-Stop-Tracking-a-File-Without-Deleting-it.png","keywords":["Git"],"articleSection":["Web Development"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/alphaefficiency.com\/git-stop-tracking-file","url":"https:\/\/alphaefficiency.com\/git-stop-tracking-file","name":"How to Stop Git Tracking a File | Alpha Efficiency.\u2122","isPartOf":{"@id":"https:\/\/alphaefficiency.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/alphaefficiency.com\/git-stop-tracking-file#primaryimage"},"image":{"@id":"https:\/\/alphaefficiency.com\/git-stop-tracking-file#primaryimage"},"thumbnailUrl":"https:\/\/alphaefficiency.com\/wp-content\/uploads\/2022\/03\/main-image-How-to-Make-Git-Stop-Tracking-a-File-Without-Deleting-it.png","datePublished":"2022-03-04T16:06:22+00:00","author":{"@id":"https:\/\/alphaefficiency.com\/#\/schema\/person\/c0b54b692c44cd01148ff8feabe433b0"},"description":"Git is used by developers all across the globe. In today\u2019s article, our web development agency explores ways to stop tracking a file in Git.","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/alphaefficiency.com\/git-stop-tracking-file"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/alphaefficiency.com\/git-stop-tracking-file#primaryimage","url":"https:\/\/alphaefficiency.com\/wp-content\/uploads\/2022\/03\/main-image-How-to-Make-Git-Stop-Tracking-a-File-Without-Deleting-it.png","contentUrl":"https:\/\/alphaefficiency.com\/wp-content\/uploads\/2022\/03\/main-image-How-to-Make-Git-Stop-Tracking-a-File-Without-Deleting-it.png","width":800,"height":500},{"@type":"WebSite","@id":"https:\/\/alphaefficiency.com\/#website","url":"https:\/\/alphaefficiency.com\/","name":"Alpha Efficiency.\u2122","description":"Make it. Development and Digital Agency in Chicago.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/alphaefficiency.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/alphaefficiency.com\/#\/schema\/person\/c0b54b692c44cd01148ff8feabe433b0","name":"Brian Dordevic","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ea1ae08900ee894b4d15c1ab314cadcd894a8841f9ec9df42ea48a5b9d64bb7e?s=96&d=blank&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ea1ae08900ee894b4d15c1ab314cadcd894a8841f9ec9df42ea48a5b9d64bb7e?s=96&d=blank&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ea1ae08900ee894b4d15c1ab314cadcd894a8841f9ec9df42ea48a5b9d64bb7e?s=96&d=blank&r=g","caption":"Brian Dordevic"},"sameAs":["https:\/\/alphaefficiency.com"],"url":"https:\/\/alphaefficiency.com\/author\/briandordevic"}]}},"_links":{"self":[{"href":"https:\/\/alphaefficiency.com\/wp-json\/wp\/v2\/posts\/17065","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/alphaefficiency.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/alphaefficiency.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/alphaefficiency.com\/wp-json\/wp\/v2\/users\/31"}],"replies":[{"embeddable":true,"href":"https:\/\/alphaefficiency.com\/wp-json\/wp\/v2\/comments?post=17065"}],"version-history":[{"count":0,"href":"https:\/\/alphaefficiency.com\/wp-json\/wp\/v2\/posts\/17065\/revisions"}],"wp:attachment":[{"href":"https:\/\/alphaefficiency.com\/wp-json\/wp\/v2\/media?parent=17065"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/alphaefficiency.com\/wp-json\/wp\/v2\/categories?post=17065"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/alphaefficiency.com\/wp-json\/wp\/v2\/tags?post=17065"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}