{"id":4622,"date":"2026-05-08T05:28:19","date_gmt":"2026-05-08T05:28:19","guid":{"rendered":"https:\/\/www.xminds.com\/resources\/?p=4622"},"modified":"2026-05-08T05:28:20","modified_gmt":"2026-05-08T05:28:20","slug":"why-your-github-repository-size-keeps-increasing-and-how-to-fix-it","status":"publish","type":"post","link":"https:\/\/www.xminds.com\/resources\/why-your-github-repository-size-keeps-increasing-and-how-to-fix-it\/","title":{"rendered":"Why Your GitHub Repository Size Keeps Increasing (And How to Fix It)"},"content":{"rendered":"\n<p>Many developers get confused when their GitHub repository size becomes much larger than the actual project folder. A project may only be 1 GB locally, but the GitHub repository size can grow to 4\u20135 GB.<\/p>\n\n\n\n<p>This can feel like a mistake but it\u2019s actually how Git is designed to work.&nbsp;<\/p>\n\n\n\n<p>In this blog, we\u2019ll break down why this happens and how to clean up your repository to reduce space.&nbsp;<\/p>\n\n\n\n<p><strong>Why Git Repositories Grow Over Time<\/strong>&nbsp;<\/p>\n\n\n\n<p>Git doesn\u2019t just store your current files, it stores the entire history of your project.&nbsp;<\/p>\n\n\n\n<p><strong>1. Git Stores Everything (Even Deleted Files)<\/strong>&nbsp;<\/p>\n\n\n\n<p>Every time you:&nbsp;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Add a file&nbsp;<\/li>\n\n\n\n<li>Modify a file&nbsp;<\/li>\n\n\n\n<li>Delete a file&nbsp;<\/li>\n<\/ul>\n\n\n\n<p>Git keeps a record of it.&nbsp;<\/p>\n\n\n\n<p>Even if you delete a large file later, it still exists in older commits.&nbsp;<\/p>\n\n\n\n<p><strong>2. Large Files Cause Major Growth<\/strong>&nbsp;<\/p>\n\n\n\n<p>If you\u2019ve committed files like:&nbsp;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>.zip, .tar&nbsp;<\/li>\n\n\n\n<li>Images\/videos&nbsp;<\/li>\n\n\n\n<li>Build files (.apk, .exe)&nbsp;<\/li>\n\n\n\n<li>Logs or backups&nbsp;<\/li>\n<\/ul>\n\n\n\n<p>These files stay in the repository history forever unless explicitly removed.&nbsp;<\/p>\n\n\n\n<p><strong>3. Repeated Changes Increase Size<\/strong>&nbsp;<\/p>\n\n\n\n<p>If a large file is updated multiple times:&nbsp;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Git stores multiple versions internally&nbsp;<\/li>\n\n\n\n<li>This significantly increases repository size over time&nbsp;<\/li>\n<\/ul>\n\n\n\n<p><strong>Real-World Example<\/strong>&nbsp;<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>Item<\/strong>&nbsp;<\/td><td><strong>Size<\/strong>&nbsp;<\/td><\/tr><tr><td>Current project files&nbsp;<\/td><td>1 GB&nbsp;<\/td><\/tr><tr><td>Git repository size&nbsp;<\/td><td>4\u20135 GB&nbsp;<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>This difference is caused by historical data accumulation.&nbsp;<\/p>\n\n\n\n<p><strong>How to Reduce Git Repository Size<\/strong>&nbsp;<\/p>\n\n\n\n<p>Cleaning a Git repository requires removing unnecessary files from both:&nbsp;<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Current tracking&nbsp;<\/li>\n\n\n\n<li>Repository history&nbsp;<\/li>\n<\/ol>\n\n\n\n<p><strong>Step 1: Stop Tracking Unnecessary Files<\/strong>&nbsp;<\/p>\n\n\n\n<p>Remove files from Git tracking:&nbsp;<\/p>\n\n\n\n<p>git rm -r &#8211;cached node_modules&nbsp;<\/p>\n\n\n\n<p>git rm -r &#8211;cached storage\/logs&nbsp;<\/p>\n\n\n\n<p>Then update your .gitignore:&nbsp;<\/p>\n\n\n\n<p>node_modules\/&nbsp;<\/p>\n\n\n\n<p>storage\/logs\/&nbsp;<\/p>\n\n\n\n<p>*.zip&nbsp;<\/p>\n\n\n\n<p>*.tar&nbsp;<\/p>\n\n\n\n<p>.env&nbsp;<\/p>\n\n\n\n<p><strong>Step 2: Remove Files from Git History<\/strong>&nbsp;<\/p>\n\n\n\n<p>Just deleting files is not enough, you must remove them from history.&nbsp;<\/p>\n\n\n\n<p><strong>Option 1: Using git-filter-repo (Recommended)<\/strong>&nbsp;<\/p>\n\n\n\n<p>pip install git-filter-repo&nbsp;<\/p>\n\n\n\n<p>git filter-repo &#8211;path path\/to\/large-file &#8211;invert-paths&nbsp;<\/p>\n\n\n\n<p><strong>Option 2: Using BFG Repo Cleaner<\/strong>&nbsp;<\/p>\n\n\n\n<p>java -jar bfg.jar &#8211;delete-files &#8216;*.zip&#8217;&nbsp;<\/p>\n\n\n\n<p>This is faster and easier for large repositories.&nbsp;<\/p>\n\n\n\n<p><strong>Step 3: Run Git Garbage Collection<\/strong>&nbsp;<\/p>\n\n\n\n<p>git gc &#8211;prune=now &#8211;aggressive&nbsp;<\/p>\n\n\n\n<p>This permanently removes unused data.&nbsp;<\/p>\n\n\n\n<p><strong>Step 4: Force Push Clean Repository<\/strong>&nbsp;<\/p>\n\n\n\n<p>Warning: This rewrites Git history&nbsp;<\/p>\n\n\n\n<p>git push origin &#8211;force &#8211;all&nbsp;<\/p>\n\n\n\n<p>Make sure your team is aware before doing this.&nbsp;<\/p>\n\n\n\n<p><strong>Best Practices to Prevent Future Issues<\/strong>&nbsp;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Always configure .gitignore properly&nbsp;<\/li>\n\n\n\n<li>Avoid committing:&nbsp;<\/li>\n\n\n\n<li>node_modules\/&nbsp;<\/li>\n\n\n\n<li>logs&nbsp;<\/li>\n\n\n\n<li>compiled files&nbsp;<\/li>\n\n\n\n<li>Use Git Large File Storage for large files&nbsp;<\/li>\n\n\n\n<li>Regularly check repo size:&nbsp;<\/li>\n<\/ul>\n\n\n\n<p>git count-objects -vH&nbsp;<\/p>\n\n\n\n<p><strong>Pro Tip<\/strong>&nbsp;<\/p>\n\n\n\n<p>If your repository is already too large:&nbsp;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Create a new clean repository&nbsp;<\/li>\n\n\n\n<li>Push only the latest code&nbsp;<\/li>\n\n\n\n<li>Archive the old repository&nbsp;<\/li>\n<\/ul>\n\n\n\n<p><strong>Conclusion<\/strong>&nbsp;<\/p>\n\n\n\n<p>Git repositories grow because they preserve history, not just your current code.&nbsp;<\/p>\n\n\n\n<p>That\u2019s why:&nbsp;<\/p>\n\n\n\n<p>A 1 GB project can become a 5 GB repository&nbsp;<\/p>\n\n\n\n<p>The only way to truly reduce size is by:&nbsp;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Removing unnecessary files&nbsp;<\/li>\n\n\n\n<li>Cleaning history&nbsp;<\/li>\n\n\n\n<li>Following best practices going forward&nbsp;<\/li>\n<\/ul>\n\n\n\n<p>Keeping your repository clean ensures:&nbsp;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Faster cloning&nbsp;<\/li>\n\n\n\n<li>Better performance&nbsp;<\/li>\n\n\n\n<li>Easier collaboration&nbsp;<\/li>\n<\/ul>\n\n\n\n                \n                    <!--begin code -->\n\n                    \n                    <div class=\"pp-multiple-authors-boxes-wrapper pp-multiple-authors-wrapper pp-multiple-authors-layout-boxed multiple-authors-target-shortcode box-post-id-4414 box-instance-id-1 ppma_boxes_4414\"\n                    data-post_id=\"4414\"\n                    data-instance_id=\"1\"\n                    data-additional_class=\"pp-multiple-authors-layout-boxed.multiple-authors-target-shortcode\"\n                    data-original_class=\"pp-multiple-authors-boxes-wrapper pp-multiple-authors-wrapper box-post-id-4414 box-instance-id-1\">\n                                                                                    <h2 class=\"widget-title box-header-title\">Author<\/h2>\n                                                                            <span class=\"ppma-layout-prefix\"><\/span>\n                        <div class=\"ppma-author-category-wrap\">\n                                                                                                                                    <span class=\"ppma-category-group ppma-category-group-1 category-index-0\">\n                                                                                                                        <ul class=\"pp-multiple-authors-boxes-ul author-ul-0\">\n                                                                                                                                                                                                                                                                                                                                                            \n                                                                                                                    <li class=\"pp-multiple-authors-boxes-li author_index_0 author_nithin-sunil has-avatar\">\n                                                                                                                                                                                    <div class=\"pp-author-boxes-avatar\">\n                                                                    <div class=\"avatar-image\">\n                                                                                                                                                                                                                <img alt='' src='https:\/\/www.xminds.com\/resources\/wp-content\/uploads\/image-5-1.png' srcset='https:\/\/www.xminds.com\/resources\/wp-content\/uploads\/image-5-1.png' class='multiple_authors_guest_author_avatar avatar' height='80' width='80'\/>                                                                                                                                                                                                            <\/div>\n                                                                                                                                    <\/div>\n                                                            \n                                                            <div class=\"pp-author-boxes-avatar-details\">\n                                                                <div class=\"pp-author-boxes-name multiple-authors-name\"><a href=\"https:\/\/www.xminds.com\/resources\/author\/nithin-sunil\/\" rel=\"author\" title=\"Nithin Sunil\" class=\"author url fn\">Nithin Sunil<\/a><\/div>                                                                                                                                                                                                    \n                                                                                                                                            <p class=\"pp-author-boxes-description multiple-authors-description author-description-0\">\n                                                                                                                                                    <p><span data-teams=\"true\">Nithin is a skilled developer specializing in full-stack architecture and the deployment of scalable, multi-tenant platforms. With a focus on building robust, AWS-based solutions, he excels at bridging the gap between complex backend systems and intuitive user experiences. Currently, his professional interests lie in optimizing system performance through AI-driven workflows and developing data-driven strategies that address real-world business needs. Beyond technical execution, he is dedicated to professional mentoring and career counseling, helping emerging IT talent navigate the path from graduation to industry-grade development.<\/span><\/p>\n                                                                                                                                                <\/p>\n                                                                                                                                                                                                    \n                                                                                                                                \n                                                                                                                            <\/div>\n                                                                                                                                                                                                                        <\/li>\n                                                                                                                                                                                                                                                                                        <\/ul>\n                                                                            <\/span>\n                                                                                                                        <\/div>\n                        <span class=\"ppma-layout-suffix\"><\/span>\n                                            <\/div>\n                    <!--end code -->\n                    \n                \n                            \n        \n","protected":false},"excerpt":{"rendered":"<p>Many developers get confused when their GitHub repository size becomes much larger than the actual project folder. A project may only be 1 GB locally, but the GitHub repository size can grow to 4\u20135 GB. This can feel like a mistake but it\u2019s actually how Git is designed to work.&nbsp; In this blog, we\u2019ll break [&hellip;]<\/p>\n","protected":false},"author":123470,"featured_media":4627,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[2],"tags":[678],"ppma_author":[711],"class_list":["post-4622","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog","tag-show-meta"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Why Your GitHub Repository Size Keeps Increasing &amp; How to Fix It<\/title>\n<meta name=\"description\" content=\"Understand why GitHub repository size grows over time and learn how to clean history, remove large files, and optimize performance.\" \/>\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.xminds.com\/resources\/why-your-github-repository-size-keeps-increasing-and-how-to-fix-it\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Why Your GitHub Repository Size Keeps Increasing &amp; How to Fix It\" \/>\n<meta property=\"og:description\" content=\"Understand why GitHub repository size grows over time and learn how to clean history, remove large files, and optimize performance.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.xminds.com\/resources\/why-your-github-repository-size-keeps-increasing-and-how-to-fix-it\/\" \/>\n<meta property=\"og:site_name\" content=\"Xminds Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/Xminds.Solutions\/\" \/>\n<meta property=\"article:published_time\" content=\"2026-05-08T05:28:19+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-05-08T05:28:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.xminds.com\/resources\/wp-content\/uploads\/image-7-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1360\" \/>\n\t<meta property=\"og:image:height\" content=\"912\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Nithin Sunil\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@Xminds\" \/>\n<meta name=\"twitter:site\" content=\"@Xminds\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Nithin Sunil\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.xminds.com\/resources\/why-your-github-repository-size-keeps-increasing-and-how-to-fix-it\/\",\"url\":\"https:\/\/www.xminds.com\/resources\/why-your-github-repository-size-keeps-increasing-and-how-to-fix-it\/\",\"name\":\"Why Your GitHub Repository Size Keeps Increasing & How to Fix It\",\"isPartOf\":{\"@id\":\"https:\/\/www.xminds.com\/resources\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.xminds.com\/resources\/why-your-github-repository-size-keeps-increasing-and-how-to-fix-it\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.xminds.com\/resources\/why-your-github-repository-size-keeps-increasing-and-how-to-fix-it\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.xminds.com\/resources\/wp-content\/uploads\/image-7-1.png\",\"datePublished\":\"2026-05-08T05:28:19+00:00\",\"dateModified\":\"2026-05-08T05:28:20+00:00\",\"author\":{\"@id\":\"https:\/\/www.xminds.com\/resources\/#\/schema\/person\/51c1a9f40ced39be9d8451a72bcc1964\"},\"description\":\"Understand why GitHub repository size grows over time and learn how to clean history, remove large files, and optimize performance.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.xminds.com\/resources\/why-your-github-repository-size-keeps-increasing-and-how-to-fix-it\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.xminds.com\/resources\/why-your-github-repository-size-keeps-increasing-and-how-to-fix-it\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.xminds.com\/resources\/why-your-github-repository-size-keeps-increasing-and-how-to-fix-it\/#primaryimage\",\"url\":\"https:\/\/www.xminds.com\/resources\/wp-content\/uploads\/image-7-1.png\",\"contentUrl\":\"https:\/\/www.xminds.com\/resources\/wp-content\/uploads\/image-7-1.png\",\"width\":1360,\"height\":912,\"caption\":\"Why Your GitHub Repository Size Keeps Increasing (And How to Fix It)\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.xminds.com\/resources\/why-your-github-repository-size-keeps-increasing-and-how-to-fix-it\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.xminds.com\/resources\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Why Your GitHub Repository Size Keeps Increasing (And How to Fix It)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.xminds.com\/resources\/#website\",\"url\":\"https:\/\/www.xminds.com\/resources\/\",\"name\":\"Xminds Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.xminds.com\/resources\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.xminds.com\/resources\/#\/schema\/person\/51c1a9f40ced39be9d8451a72bcc1964\",\"name\":\"Nithin Sunil\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.xminds.com\/resources\/#\/schema\/person\/image\/19a1e13428e6066e1d4ca2b1a3d5a414\",\"url\":\"https:\/\/www.xminds.com\/resources\/wp-content\/uploads\/image-5-1.png\",\"contentUrl\":\"https:\/\/www.xminds.com\/resources\/wp-content\/uploads\/image-5-1.png\",\"caption\":\"Nithin Sunil\"},\"description\":\"Nithin is a skilled developer specializing in full-stack architecture and the deployment of scalable, multi-tenant platforms. With a focus on building robust, AWS-based solutions, he excels at bridging the gap between complex backend systems and intuitive user experiences. Currently, his professional interests lie in optimizing system performance through AI-driven workflows and developing data-driven strategies that address real-world business needs. Beyond technical execution, he is dedicated to professional mentoring and career counseling, helping emerging IT talent navigate the path from graduation to industry-grade development.\",\"sameAs\":[\"https:\/\/www.xminds.com\/\"],\"url\":\"https:\/\/www.xminds.com\/resources\/author\/nithin-sunil\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Why Your GitHub Repository Size Keeps Increasing & How to Fix It","description":"Understand why GitHub repository size grows over time and learn how to clean history, remove large files, and optimize performance.","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.xminds.com\/resources\/why-your-github-repository-size-keeps-increasing-and-how-to-fix-it\/","og_locale":"en_US","og_type":"article","og_title":"Why Your GitHub Repository Size Keeps Increasing & How to Fix It","og_description":"Understand why GitHub repository size grows over time and learn how to clean history, remove large files, and optimize performance.","og_url":"https:\/\/www.xminds.com\/resources\/why-your-github-repository-size-keeps-increasing-and-how-to-fix-it\/","og_site_name":"Xminds Blog","article_publisher":"https:\/\/www.facebook.com\/Xminds.Solutions\/","article_published_time":"2026-05-08T05:28:19+00:00","article_modified_time":"2026-05-08T05:28:20+00:00","og_image":[{"width":1360,"height":912,"url":"https:\/\/www.xminds.com\/resources\/wp-content\/uploads\/image-7-1.png","type":"image\/png"}],"author":"Nithin Sunil","twitter_card":"summary_large_image","twitter_creator":"@Xminds","twitter_site":"@Xminds","twitter_misc":{"Written by":"Nithin Sunil","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.xminds.com\/resources\/why-your-github-repository-size-keeps-increasing-and-how-to-fix-it\/","url":"https:\/\/www.xminds.com\/resources\/why-your-github-repository-size-keeps-increasing-and-how-to-fix-it\/","name":"Why Your GitHub Repository Size Keeps Increasing & How to Fix It","isPartOf":{"@id":"https:\/\/www.xminds.com\/resources\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.xminds.com\/resources\/why-your-github-repository-size-keeps-increasing-and-how-to-fix-it\/#primaryimage"},"image":{"@id":"https:\/\/www.xminds.com\/resources\/why-your-github-repository-size-keeps-increasing-and-how-to-fix-it\/#primaryimage"},"thumbnailUrl":"https:\/\/www.xminds.com\/resources\/wp-content\/uploads\/image-7-1.png","datePublished":"2026-05-08T05:28:19+00:00","dateModified":"2026-05-08T05:28:20+00:00","author":{"@id":"https:\/\/www.xminds.com\/resources\/#\/schema\/person\/51c1a9f40ced39be9d8451a72bcc1964"},"description":"Understand why GitHub repository size grows over time and learn how to clean history, remove large files, and optimize performance.","breadcrumb":{"@id":"https:\/\/www.xminds.com\/resources\/why-your-github-repository-size-keeps-increasing-and-how-to-fix-it\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.xminds.com\/resources\/why-your-github-repository-size-keeps-increasing-and-how-to-fix-it\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.xminds.com\/resources\/why-your-github-repository-size-keeps-increasing-and-how-to-fix-it\/#primaryimage","url":"https:\/\/www.xminds.com\/resources\/wp-content\/uploads\/image-7-1.png","contentUrl":"https:\/\/www.xminds.com\/resources\/wp-content\/uploads\/image-7-1.png","width":1360,"height":912,"caption":"Why Your GitHub Repository Size Keeps Increasing (And How to Fix It)"},{"@type":"BreadcrumbList","@id":"https:\/\/www.xminds.com\/resources\/why-your-github-repository-size-keeps-increasing-and-how-to-fix-it\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.xminds.com\/resources\/"},{"@type":"ListItem","position":2,"name":"Why Your GitHub Repository Size Keeps Increasing (And How to Fix It)"}]},{"@type":"WebSite","@id":"https:\/\/www.xminds.com\/resources\/#website","url":"https:\/\/www.xminds.com\/resources\/","name":"Xminds Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.xminds.com\/resources\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.xminds.com\/resources\/#\/schema\/person\/51c1a9f40ced39be9d8451a72bcc1964","name":"Nithin Sunil","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.xminds.com\/resources\/#\/schema\/person\/image\/19a1e13428e6066e1d4ca2b1a3d5a414","url":"https:\/\/www.xminds.com\/resources\/wp-content\/uploads\/image-5-1.png","contentUrl":"https:\/\/www.xminds.com\/resources\/wp-content\/uploads\/image-5-1.png","caption":"Nithin Sunil"},"description":"Nithin is a skilled developer specializing in full-stack architecture and the deployment of scalable, multi-tenant platforms. With a focus on building robust, AWS-based solutions, he excels at bridging the gap between complex backend systems and intuitive user experiences. Currently, his professional interests lie in optimizing system performance through AI-driven workflows and developing data-driven strategies that address real-world business needs. Beyond technical execution, he is dedicated to professional mentoring and career counseling, helping emerging IT talent navigate the path from graduation to industry-grade development.","sameAs":["https:\/\/www.xminds.com\/"],"url":"https:\/\/www.xminds.com\/resources\/author\/nithin-sunil\/"}]}},"authors":[{"term_id":711,"user_id":123470,"is_guest":0,"slug":"nithin-sunil","display_name":"Nithin Sunil","avatar_url":{"url":"https:\/\/www.xminds.com\/resources\/wp-content\/uploads\/image-5-1.png","url2x":"https:\/\/www.xminds.com\/resources\/wp-content\/uploads\/image-5-1.png"},"1":"","2":"","3":"","4":"","5":"","6":"","7":"","8":""}],"_links":{"self":[{"href":"https:\/\/www.xminds.com\/resources\/wp-json\/wp\/v2\/posts\/4622","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.xminds.com\/resources\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.xminds.com\/resources\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.xminds.com\/resources\/wp-json\/wp\/v2\/users\/123470"}],"replies":[{"embeddable":true,"href":"https:\/\/www.xminds.com\/resources\/wp-json\/wp\/v2\/comments?post=4622"}],"version-history":[{"count":3,"href":"https:\/\/www.xminds.com\/resources\/wp-json\/wp\/v2\/posts\/4622\/revisions"}],"predecessor-version":[{"id":4626,"href":"https:\/\/www.xminds.com\/resources\/wp-json\/wp\/v2\/posts\/4622\/revisions\/4626"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.xminds.com\/resources\/wp-json\/wp\/v2\/media\/4627"}],"wp:attachment":[{"href":"https:\/\/www.xminds.com\/resources\/wp-json\/wp\/v2\/media?parent=4622"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.xminds.com\/resources\/wp-json\/wp\/v2\/categories?post=4622"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.xminds.com\/resources\/wp-json\/wp\/v2\/tags?post=4622"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/www.xminds.com\/resources\/wp-json\/wp\/v2\/ppma_author?post=4622"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}