{"id":337,"date":"2024-03-08T17:04:00","date_gmt":"2024-03-08T16:04:00","guid":{"rendered":"https:\/\/noiseonthenet.space\/noise\/?p=337"},"modified":"2024-03-08T22:14:06","modified_gmt":"2024-03-08T21:14:06","slug":"git-separated-worktree","status":"publish","type":"post","link":"https:\/\/noiseonthenet.space\/noise\/2024\/03\/git-separated-worktree\/","title":{"rendered":"Git Separated Worktree"},"content":{"rendered":"<div id=\"org208d66e\" class=\"figure\">\n\n<img decoding=\"async\" src=\"https:\/noise\/wp-content\/uploads\/2024\/03\/erda-estremera-sxNt9g77PE0-unsplash-scaled.jpg\" alt=\"erda-estremera-sxNt9g77PE0-unsplash-scaled.jpg\" \/>\n\n<\/div>\nPhoto by <a href=\"https:\/\/unsplash.com\/@erdaest?utm_content=creditCopyText&amp;utm_medium=referral&amp;utm_source=unsplash\" data-bcup-haslogintext=\"no\">Erda Estremera<\/a> on <a href=\"https:\/\/unsplash.com\/photos\/black-and-brown-dachshund-standing-in-box-sxNt9g77PE0?utm_content=creditCopyText&amp;utm_medium=referral&amp;utm_source=unsplash\" data-bcup-haslogintext=\"no\">Unsplash<\/a>\n\nGit allows to have separate work tree and repo.\n\nThis is handy in a number of situations e.g.\n<ul class=\"org-ul\">\n \t<li>managing configuration files into your home directory<\/li>\n \t<li>any situation where you don\u2019t want anyone or anything mess up your .git directory<\/li>\n<\/ul>\n<div id=\"outline-container-org69cf784\" class=\"outline-2\">\n<h2 id=\"org69cf784\">bare repositories<\/h2>\n<div id=\"text-org69cf784\" class=\"outline-text-2\">\n<ul class=\"org-ul\">\n \t<li>git allows to create bare repositories (i.e. directories including only the git files and no working directory) with the following command in an empty directory.\n<div class=\"org-src-container\"><label class=\"org-src-name\"><\/label>\n<pre id=\"nil\" class=\"src src-bash\"><span style=\"color: #ecbe7b;\">git<\/span> init --bare\n<\/pre>\n<\/div><\/li>\n \t<li>any repository path which does not end with \u201c\/.git\u201d is considered a bare repository.<\/li>\n<\/ul>\n<\/div>\n<\/div>\n<div id=\"outline-container-org639da62\" class=\"outline-2\">\n<h2 id=\"org639da62\">cloning<\/h2>\n<div id=\"text-org639da62\" class=\"outline-text-2\">\n\nusing the following syntax it is possible to separate the working directory\n<div class=\"org-src-container\"><label class=\"org-src-name\"><\/label>\n<pre id=\"nil\" class=\"src src-bash\"><span style=\"color: #ecbe7b;\">git<\/span> clone &lt;repository&gt; --separate-git-dir &lt;git-dir&gt; &lt;work-dir&gt;\n<\/pre>\n<\/div>\nlooking into work directory we can find a plain text file named <code>.git<\/code> which contains the following\n<p class=\"verse\">gitdir: &lt;path\/to\/repo\/dir&gt;<\/p>\n\n<\/div>\n<\/div>\n<div id=\"outline-container-org0095ca2\" class=\"outline-2\">\n<h2 id=\"org0095ca2\">setting up a git repository for an existing directory<\/h2>\n<div id=\"text-org0095ca2\" class=\"outline-text-2\">\n\nif the directory exists already we can follow this procedure:\n<ol class=\"org-ol\">\n \t<li>create the git repository in a different place e.g.\n<div class=\"org-src-container\"><label class=\"org-src-name\"><\/label>\n<pre id=\"nil\" class=\"src src-bash\"><span style=\"color: #ecbe7b;\">cd<\/span> ~\/my_git_repos\/\n<span style=\"color: #ecbe7b;\">git<\/span> init --bare new_repo\n<\/pre>\n<\/div><\/li>\n \t<li>add a .git file in the existing directory with the following text\n<p class=\"verse\">gitdir: ~\/my_git_repos\/new_repo<\/p>\n<\/li>\n \t<li>create a .gitignore file including all files and subdirectories we don\u2019t want to include<\/li>\n \t<li>add the rest of the files to the index<\/li>\n<\/ol>\n<\/div>\n<\/div>\n<div id=\"outline-container-org22ee65b\" class=\"outline-2\">\n<h2 id=\"org22ee65b\">HOME directory<\/h2>\n<div id=\"text-org22ee65b\" class=\"outline-text-2\">\n\none specific use case is configuration files in the home directory: this solution comes with a couple of warnings:\n<ul class=\"org-ul\">\n \t<li>you may risk to add personal files to a repo, or files not intended to be saved<\/li>\n \t<li>all subdirectories are seen as part of the repository<\/li>\n<\/ul>\nThe solution can be done with these tips:\n<ol class=\"org-ol\">\n \t<li>move the .git file or rename it when you are not using the repository<\/li>\n \t<li>leave no bare files in your home directory; always use at least one subdirectory, so you can add it to gitignore<\/li>\n<\/ol>\n<\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"Git allows to have separate work tree and repo. This is handy in a number of situations","protected":false},"author":1,"featured_media":342,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"nf_dc_page":"","inline_featured_image":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[25],"tags":[26],"class_list":["post-337","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tools","tag-git"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Git Separated Worktree - Noise On The Net<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/noiseonthenet.space\/noise\/2024\/03\/git-separated-worktree\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Git Separated Worktree - Noise On The Net\" \/>\n<meta property=\"og:description\" content=\"Git allows to have separate work tree and repo. This is handy in a number of situations\" \/>\n<meta property=\"og:url\" content=\"https:\/\/noiseonthenet.space\/noise\/2024\/03\/git-separated-worktree\/\" \/>\n<meta property=\"og:site_name\" content=\"Noise On The Net\" \/>\n<meta property=\"article:published_time\" content=\"2024-03-08T16:04:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-08T21:14:06+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/noiseonthenet.space\/noise\/wp-content\/uploads\/2024\/03\/erda-estremera-sxNt9g77PE0-unsplash-scaled.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"1700\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"marco.p.v.vezzoli\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"marco.p.v.vezzoli\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/noiseonthenet.space\\\/noise\\\/2024\\\/03\\\/git-separated-worktree\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/noiseonthenet.space\\\/noise\\\/2024\\\/03\\\/git-separated-worktree\\\/\"},\"author\":{\"name\":\"marco.p.v.vezzoli\",\"@id\":\"https:\\\/\\\/noiseonthenet.space\\\/noise\\\/#\\\/schema\\\/person\\\/88c3a70f2b23480197bc61d6e1e2e982\"},\"headline\":\"Git Separated Worktree\",\"datePublished\":\"2024-03-08T16:04:00+00:00\",\"dateModified\":\"2024-03-08T21:14:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/noiseonthenet.space\\\/noise\\\/2024\\\/03\\\/git-separated-worktree\\\/\"},\"wordCount\":289,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/noiseonthenet.space\\\/noise\\\/#\\\/schema\\\/person\\\/88c3a70f2b23480197bc61d6e1e2e982\"},\"image\":{\"@id\":\"https:\\\/\\\/noiseonthenet.space\\\/noise\\\/2024\\\/03\\\/git-separated-worktree\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/i0.wp.com\\\/noiseonthenet.space\\\/noise\\\/wp-content\\\/uploads\\\/2024\\\/03\\\/erda-estremera-sxNt9g77PE0-unsplash-scaled.jpg?fit=2560%2C1700&ssl=1\",\"keywords\":[\"Git\"],\"articleSection\":[\"Tools\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/noiseonthenet.space\\\/noise\\\/2024\\\/03\\\/git-separated-worktree\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/noiseonthenet.space\\\/noise\\\/2024\\\/03\\\/git-separated-worktree\\\/\",\"url\":\"https:\\\/\\\/noiseonthenet.space\\\/noise\\\/2024\\\/03\\\/git-separated-worktree\\\/\",\"name\":\"Git Separated Worktree - Noise On The Net\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/noiseonthenet.space\\\/noise\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/noiseonthenet.space\\\/noise\\\/2024\\\/03\\\/git-separated-worktree\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/noiseonthenet.space\\\/noise\\\/2024\\\/03\\\/git-separated-worktree\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/i0.wp.com\\\/noiseonthenet.space\\\/noise\\\/wp-content\\\/uploads\\\/2024\\\/03\\\/erda-estremera-sxNt9g77PE0-unsplash-scaled.jpg?fit=2560%2C1700&ssl=1\",\"datePublished\":\"2024-03-08T16:04:00+00:00\",\"dateModified\":\"2024-03-08T21:14:06+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/noiseonthenet.space\\\/noise\\\/2024\\\/03\\\/git-separated-worktree\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/noiseonthenet.space\\\/noise\\\/2024\\\/03\\\/git-separated-worktree\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/noiseonthenet.space\\\/noise\\\/2024\\\/03\\\/git-separated-worktree\\\/#primaryimage\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/noiseonthenet.space\\\/noise\\\/wp-content\\\/uploads\\\/2024\\\/03\\\/erda-estremera-sxNt9g77PE0-unsplash-scaled.jpg?fit=2560%2C1700&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/noiseonthenet.space\\\/noise\\\/wp-content\\\/uploads\\\/2024\\\/03\\\/erda-estremera-sxNt9g77PE0-unsplash-scaled.jpg?fit=2560%2C1700&ssl=1\",\"width\":2560,\"height\":1700},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/noiseonthenet.space\\\/noise\\\/2024\\\/03\\\/git-separated-worktree\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/noiseonthenet.space\\\/noise\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Git Separated Worktree\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/noiseonthenet.space\\\/noise\\\/#website\",\"url\":\"https:\\\/\\\/noiseonthenet.space\\\/noise\\\/\",\"name\":\"Noise On The Net\",\"description\":\"Sharing adventures in code\",\"publisher\":{\"@id\":\"https:\\\/\\\/noiseonthenet.space\\\/noise\\\/#\\\/schema\\\/person\\\/88c3a70f2b23480197bc61d6e1e2e982\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/noiseonthenet.space\\\/noise\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/noiseonthenet.space\\\/noise\\\/#\\\/schema\\\/person\\\/88c3a70f2b23480197bc61d6e1e2e982\",\"name\":\"marco.p.v.vezzoli\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b9d9aab1df560bc14d73b0b442198f196ce39e7c7a38df1dc22fec0b97f17da9?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b9d9aab1df560bc14d73b0b442198f196ce39e7c7a38df1dc22fec0b97f17da9?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b9d9aab1df560bc14d73b0b442198f196ce39e7c7a38df1dc22fec0b97f17da9?s=96&d=mm&r=g\",\"caption\":\"marco.p.v.vezzoli\"},\"logo\":{\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b9d9aab1df560bc14d73b0b442198f196ce39e7c7a38df1dc22fec0b97f17da9?s=96&d=mm&r=g\"},\"description\":\"Self taught assembler programming at 11 on my C64 (1983). Never stopped since then -- always looking up for curious things in the software development, data science and AI. Linux and FOSS user since 1994. MSc in physics in 1996. Working in large semiconductor companies since 1997 (STM, Micron) developing analytics and full stack web infrastructures, microservices, ML solutions\",\"sameAs\":[\"https:\\\/\\\/noiseonthenet.space\\\/noise\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/marco-paolo-valerio-vezzoli-0663835\\\/\"],\"url\":\"https:\\\/\\\/noiseonthenet.space\\\/noise\\\/author\\\/marco-p-v-vezzoli\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Git Separated Worktree - Noise On The Net","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:\/\/noiseonthenet.space\/noise\/2024\/03\/git-separated-worktree\/","og_locale":"en_US","og_type":"article","og_title":"Git Separated Worktree - Noise On The Net","og_description":"Git allows to have separate work tree and repo. This is handy in a number of situations","og_url":"https:\/\/noiseonthenet.space\/noise\/2024\/03\/git-separated-worktree\/","og_site_name":"Noise On The Net","article_published_time":"2024-03-08T16:04:00+00:00","article_modified_time":"2024-03-08T21:14:06+00:00","og_image":[{"width":2560,"height":1700,"url":"https:\/\/noiseonthenet.space\/noise\/wp-content\/uploads\/2024\/03\/erda-estremera-sxNt9g77PE0-unsplash-scaled.jpg","type":"image\/jpeg"}],"author":"marco.p.v.vezzoli","twitter_card":"summary_large_image","twitter_misc":{"Written by":"marco.p.v.vezzoli","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/noiseonthenet.space\/noise\/2024\/03\/git-separated-worktree\/#article","isPartOf":{"@id":"https:\/\/noiseonthenet.space\/noise\/2024\/03\/git-separated-worktree\/"},"author":{"name":"marco.p.v.vezzoli","@id":"https:\/\/noiseonthenet.space\/noise\/#\/schema\/person\/88c3a70f2b23480197bc61d6e1e2e982"},"headline":"Git Separated Worktree","datePublished":"2024-03-08T16:04:00+00:00","dateModified":"2024-03-08T21:14:06+00:00","mainEntityOfPage":{"@id":"https:\/\/noiseonthenet.space\/noise\/2024\/03\/git-separated-worktree\/"},"wordCount":289,"commentCount":0,"publisher":{"@id":"https:\/\/noiseonthenet.space\/noise\/#\/schema\/person\/88c3a70f2b23480197bc61d6e1e2e982"},"image":{"@id":"https:\/\/noiseonthenet.space\/noise\/2024\/03\/git-separated-worktree\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/noiseonthenet.space\/noise\/wp-content\/uploads\/2024\/03\/erda-estremera-sxNt9g77PE0-unsplash-scaled.jpg?fit=2560%2C1700&ssl=1","keywords":["Git"],"articleSection":["Tools"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/noiseonthenet.space\/noise\/2024\/03\/git-separated-worktree\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/noiseonthenet.space\/noise\/2024\/03\/git-separated-worktree\/","url":"https:\/\/noiseonthenet.space\/noise\/2024\/03\/git-separated-worktree\/","name":"Git Separated Worktree - Noise On The Net","isPartOf":{"@id":"https:\/\/noiseonthenet.space\/noise\/#website"},"primaryImageOfPage":{"@id":"https:\/\/noiseonthenet.space\/noise\/2024\/03\/git-separated-worktree\/#primaryimage"},"image":{"@id":"https:\/\/noiseonthenet.space\/noise\/2024\/03\/git-separated-worktree\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/noiseonthenet.space\/noise\/wp-content\/uploads\/2024\/03\/erda-estremera-sxNt9g77PE0-unsplash-scaled.jpg?fit=2560%2C1700&ssl=1","datePublished":"2024-03-08T16:04:00+00:00","dateModified":"2024-03-08T21:14:06+00:00","breadcrumb":{"@id":"https:\/\/noiseonthenet.space\/noise\/2024\/03\/git-separated-worktree\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/noiseonthenet.space\/noise\/2024\/03\/git-separated-worktree\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/noiseonthenet.space\/noise\/2024\/03\/git-separated-worktree\/#primaryimage","url":"https:\/\/i0.wp.com\/noiseonthenet.space\/noise\/wp-content\/uploads\/2024\/03\/erda-estremera-sxNt9g77PE0-unsplash-scaled.jpg?fit=2560%2C1700&ssl=1","contentUrl":"https:\/\/i0.wp.com\/noiseonthenet.space\/noise\/wp-content\/uploads\/2024\/03\/erda-estremera-sxNt9g77PE0-unsplash-scaled.jpg?fit=2560%2C1700&ssl=1","width":2560,"height":1700},{"@type":"BreadcrumbList","@id":"https:\/\/noiseonthenet.space\/noise\/2024\/03\/git-separated-worktree\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/noiseonthenet.space\/noise\/"},{"@type":"ListItem","position":2,"name":"Git Separated Worktree"}]},{"@type":"WebSite","@id":"https:\/\/noiseonthenet.space\/noise\/#website","url":"https:\/\/noiseonthenet.space\/noise\/","name":"Noise On The Net","description":"Sharing adventures in code","publisher":{"@id":"https:\/\/noiseonthenet.space\/noise\/#\/schema\/person\/88c3a70f2b23480197bc61d6e1e2e982"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/noiseonthenet.space\/noise\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/noiseonthenet.space\/noise\/#\/schema\/person\/88c3a70f2b23480197bc61d6e1e2e982","name":"marco.p.v.vezzoli","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/b9d9aab1df560bc14d73b0b442198f196ce39e7c7a38df1dc22fec0b97f17da9?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/b9d9aab1df560bc14d73b0b442198f196ce39e7c7a38df1dc22fec0b97f17da9?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b9d9aab1df560bc14d73b0b442198f196ce39e7c7a38df1dc22fec0b97f17da9?s=96&d=mm&r=g","caption":"marco.p.v.vezzoli"},"logo":{"@id":"https:\/\/secure.gravatar.com\/avatar\/b9d9aab1df560bc14d73b0b442198f196ce39e7c7a38df1dc22fec0b97f17da9?s=96&d=mm&r=g"},"description":"Self taught assembler programming at 11 on my C64 (1983). Never stopped since then -- always looking up for curious things in the software development, data science and AI. Linux and FOSS user since 1994. MSc in physics in 1996. Working in large semiconductor companies since 1997 (STM, Micron) developing analytics and full stack web infrastructures, microservices, ML solutions","sameAs":["https:\/\/noiseonthenet.space\/noise\/","https:\/\/www.linkedin.com\/in\/marco-paolo-valerio-vezzoli-0663835\/"],"url":"https:\/\/noiseonthenet.space\/noise\/author\/marco-p-v-vezzoli\/"}]}},"jetpack_featured_media_url":"https:\/\/i0.wp.com\/noiseonthenet.space\/noise\/wp-content\/uploads\/2024\/03\/erda-estremera-sxNt9g77PE0-unsplash-scaled.jpg?fit=2560%2C1700&ssl=1","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/pdDUZ5-5r","jetpack-related-posts":[],"jetpack_likes_enabled":true,"_links":{"self":[{"href":"https:\/\/noiseonthenet.space\/noise\/wp-json\/wp\/v2\/posts\/337","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/noiseonthenet.space\/noise\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/noiseonthenet.space\/noise\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/noiseonthenet.space\/noise\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/noiseonthenet.space\/noise\/wp-json\/wp\/v2\/comments?post=337"}],"version-history":[{"count":5,"href":"https:\/\/noiseonthenet.space\/noise\/wp-json\/wp\/v2\/posts\/337\/revisions"}],"predecessor-version":[{"id":345,"href":"https:\/\/noiseonthenet.space\/noise\/wp-json\/wp\/v2\/posts\/337\/revisions\/345"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/noiseonthenet.space\/noise\/wp-json\/wp\/v2\/media\/342"}],"wp:attachment":[{"href":"https:\/\/noiseonthenet.space\/noise\/wp-json\/wp\/v2\/media?parent=337"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/noiseonthenet.space\/noise\/wp-json\/wp\/v2\/categories?post=337"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/noiseonthenet.space\/noise\/wp-json\/wp\/v2\/tags?post=337"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}