{"id":223,"date":"2012-10-22T15:53:42","date_gmt":"2012-10-22T21:53:42","guid":{"rendered":"http:\/\/lyraphase.com\/wp\/?p=223"},"modified":"2022-03-08T02:32:31","modified_gmt":"2022-03-08T09:32:31","slug":"installing-latest-git-on-ubuntu-with-git-subtree-support","status":"publish","type":"post","link":"https:\/\/mail.lyraphase.com\/wp\/projects\/installing-latest-git-on-ubuntu-with-git-subtree-support\/","title":{"rendered":"Installing latest git on Ubuntu with git-subtree support"},"content":{"rendered":"<p>Recently I found it necessary to join two git repos together while still maintaining history &amp; future ability to split or rejoin them. \u00a0Enter the &#8216;<a title=\"git-subtree on github (now merged into git-core)\" href=\"https:\/\/github.com\/apenwarr\/git-subtree\" target=\"_blank\" rel=\"noopener\"><code>git subtree<\/code><\/a>&#8216; command.<\/p>\n<p>Because this command is now merged into git-core since\u00a01.7.11, we will need to install the latest git from a <a title=\"Git stable releases PPA \" href=\"https:\/\/launchpad.net\/~git-core\/+archive\/ppa\" target=\"_blank\" rel=\"noopener\">PPA<\/a>. \u00a0Note that as of &#8216;<a title=\"Mon Oct 22 03:33:37 PM MDT 2012\" href=\"#\">now<\/a>&#8216;, the latest available package from the PPA we will use is 1.8.0, and it currently installs the subtree script to\u00a0<code>\/usr\/share\/doc\/git\/contrib\/subtree<\/code>. However, since the Makefile there expects asciidoc.conf to be in <code>..\/..\/Documentation\/asciidoc.conf<\/code>, we must checkout the source package &amp; make from there.<\/p>\n<p>I am using\u00a0Ubuntu 12.04.1 LTS here.<\/p>\n<h2>Installing latest git-core + git-subtree<\/h2>\n<p>First add the PPA, update &amp; upgrade. \u00a0Then install git packages that are held back by apt. \u00a0Also install asciidoc (optional if you want the manpage).<\/p>\n<blockquote>\n<pre><code>sudo add-apt-repository ppa:git-core\/ppa &amp;&amp; sudo apt-get update &amp;&amp; sudo apt-get -y upgrade &amp;&amp; sudo apt-get -y install git git-man git-svn asciidoc<\/code><\/pre>\n<\/blockquote>\n<p>Next, install the source package &amp; make git-subtree + manpage:<\/p>\n<blockquote>\n<pre><code>[ ! -e '~\/src\/git-core' ] &amp;&amp; mkdir -p ~\/src\/git-core\r\ncd ~\/src\/git-core &amp;&amp; apt-get source git-core\r\ncd ~\/src\/git-core\/git-*\/contrib\/subtree\/\r\n[ -e '\/usr\/lib\/git-core' ] &amp;&amp; sed -i -e '\/^libexecdir.*\/ s|\/libexec\/|\/lib\/|' Makefile || echo '\/usr\/lib\/git-core does not exist! Check that your libexec dir exists and reinstall git-subtree'\r\nsudo make prefix=\/usr &amp;&amp; sudo make prefix=\/usr install &amp;&amp; sudo make prefix=\/usr install-doc<\/code><\/pre>\n<\/blockquote>\n<p>This may not work for you if you&#8217;re not using Ubuntu (your prefix or libexec dir may be different). \u00a0If in doubt, get git-core from <a title=\"Git on GitHub\" href=\"https:\/\/github.com\/git\/git.git\" target=\"_blank\" rel=\"noopener\">upstream<\/a> and build it from there, or install the script to <code>$(git --exec-path)\/git-subtree<\/code> and <code>chmod 755<\/code> it (see Makefile &amp; INSTALL doc in <code>contrib\/subtree<\/code>).<\/p>\n<p>Now you should be able to use the &#8216;<code>git subtree<\/code>&#8216; command. \u00a0For help, run &#8216;<code>git help subtree<\/code>&#8216; or &#8216;<code>man git-subtree<\/code>&#8216;.<\/p>\n<p>Some helpful examples of <code>git subtree<\/code> in use in the wild:<\/p>\n<ul>\n<li><a title=\"Sharing Code between projects with git-subtree\" href=\"http:\/\/psionides.eu\/2010\/02\/04\/sharing-code-between-projects-with-git-subtree\/\" target=\"_blank\" rel=\"noopener\">Sharing Code between projects with git-subtree @ Apples &amp; Rubies blog<\/a><\/li>\n<li><a title=\"I love git-subtree @ a Beta-ful life blog\" href=\"https:\/\/betaful.com\/post\/82668809242\/i-love-git-subtree\" target=\"_blank\" rel=\"noopener\">I love git-subtree @ a Beta-ful life blog<\/a><\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>Update 2012-10-22: \u00a0<a title=\"Git PPA bug on Launchpad\" href=\"https:\/\/bugs.launchpad.net\/ubuntu\/+source\/git\/+bug\/1072424\/comments\/3\" target=\"_blank\" rel=\"noopener\">Currently<\/a> the package for git 1.8.0 from the PPA does not include the <code>git-prompt.sh<\/code> script. \u00a0If you are using the <code>__git_ps1<\/code> function in your bash prompt, you&#8217;ll need to get the source package and find that file in\u00a0<code>\/home\/jcuzella\/src\/git-core\/git-1.8.0\/contrib\/completion\/git-prompt.sh<\/code>. Install that file somewhere under your home directory and then add a line to your <code>.bashrc<\/code> file to source it. You&#8217;ll know if you need it because you&#8217;ll probably see this message after installing latest git:<\/p>\n<pre><code>__git_ps1: command not found<\/code><\/pre>\n<blockquote>\n<pre><code>[ ! -e '~\/src\/git-core' ] &amp;&amp; mkdir -p ~\/src\/git-core &amp;&amp; cd ~\/src\/git-core &amp;&amp; apt-get source git-core\r\n[ ! -e '~\/src\/bin' ] &amp;&amp; mkdir ~\/bin\r\ncp ~\/src\/git-core\/git-*\/contrib\/completion\/git-prompt.sh ~\/bin\/\r\nchmod +x ~\/bin\/git-prompt.sh\r\necho '. $HOME\/bin\/git-prompt.sh' &gt;&gt; ~\/.bashrc<\/code><\/pre>\n<\/blockquote>\n<!--themify_builder_content-->\n<div id=\"themify_builder_content-223\" data-postid=\"223\" class=\"themify_builder_content themify_builder_content-223 themify_builder tf_clear\">\n    <\/div>\n<!--\/themify_builder_content-->\n","protected":false},"excerpt":{"rendered":"<p>Recently I found it necessary to join two git repos together while still maintaining history &amp; future ability to split or rejoin them. \u00a0Enter the &#8216;git subtree&#8216; command. Because this command is now merged into git-core since\u00a01.7.11, we will need to install the latest git from a PPA. \u00a0Note that as of &#8216;now&#8216;, the latest [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":277,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[15,16],"tags":[7,29,41,74,67],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v18.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Installing latest git on Ubuntu with git-subtree support - Phasik Flux<\/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:\/\/lyraphase.com\/wp\/projects\/installing-latest-git-on-ubuntu-with-git-subtree-support\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Installing latest git on Ubuntu with git-subtree support - Phasik Flux\" \/>\n<meta property=\"og:description\" content=\"Recently I found it necessary to join two git repos together while still maintaining history &amp; future ability to split or rejoin them. \u00a0Enter the &#8216;git subtree&#8216; command. Because this command is now merged into git-core since\u00a01.7.11, we will need to install the latest git from a PPA. \u00a0Note that as of &#8216;now&#8216;, the latest [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/lyraphase.com\/wp\/projects\/installing-latest-git-on-ubuntu-with-git-subtree-support\/\" \/>\n<meta property=\"og:site_name\" content=\"Phasik Flux\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/fb.me\/djPhasik\" \/>\n<meta property=\"article:published_time\" content=\"2012-10-22T21:53:42+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-03-08T09:32:31+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/lyraphase.com\/wp\/wp-content\/uploads\/2012\/12\/PlasmaTree.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1438\" \/>\n\t<meta property=\"og:image:height\" content=\"632\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@TrinitronX\" \/>\n<meta name=\"twitter:site\" content=\"@trinitronx\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Administrator\" \/>\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\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/www.lyraphase.com\/wp\/#\/schema\/person\/e39ee647a6fe0d4cadc07706d14d2e41\",\"name\":\"DJPhasik\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/www.lyraphase.com\/wp\/#personlogo\",\"inLanguage\":\"en-US\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/edb379d5d0f55cde97ea32e0c36db1ad?s=96&r=r\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/edb379d5d0f55cde97ea32e0c36db1ad?s=96&r=r\",\"caption\":\"DJPhasik\"},\"logo\":{\"@id\":\"https:\/\/www.lyraphase.com\/wp\/#personlogo\"},\"description\":\"An Electrical Engineer turned DJ, Producer, and Software developer from CO He's got a passion for technology and electronic music. When he\u2019s not working on electronics or software projects, he\u2019s constantly fueling his need for artistic expression through music.\",\"sameAs\":[\"https:\/\/www.lyraphase.com\",\"https:\/\/fb.me\/djPhasik\",\"https:\/\/www.instagram.com\/jamescuzella\",\"https:\/\/pin.it\/atfqjvnuqbmt2o\",\"https:\/\/twitter.com\/trinitronx\",\"https:\/\/www.youtube.com\/user\/DJPhasik\/\",\"https:\/\/soundcloud.com\/phasik\"]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.lyraphase.com\/wp\/#website\",\"url\":\"https:\/\/www.lyraphase.com\/wp\/\",\"name\":\"Phasik Flux\",\"description\":\"[art][music][energy][time][dimensions][consciousness][soul][spirituality][love]\",\"publisher\":{\"@id\":\"https:\/\/www.lyraphase.com\/wp\/#\/schema\/person\/e39ee647a6fe0d4cadc07706d14d2e41\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.lyraphase.com\/wp\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/lyraphase.com\/wp\/projects\/installing-latest-git-on-ubuntu-with-git-subtree-support\/#primaryimage\",\"inLanguage\":\"en-US\",\"url\":\"https:\/\/mail.lyraphase.com\/wp\/wp-content\/uploads\/2012\/12\/PlasmaTree.png\",\"contentUrl\":\"https:\/\/mail.lyraphase.com\/wp\/wp-content\/uploads\/2012\/12\/PlasmaTree.png\",\"width\":1438,\"height\":632},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/lyraphase.com\/wp\/projects\/installing-latest-git-on-ubuntu-with-git-subtree-support\/#webpage\",\"url\":\"https:\/\/lyraphase.com\/wp\/projects\/installing-latest-git-on-ubuntu-with-git-subtree-support\/\",\"name\":\"Installing latest git on Ubuntu with git-subtree support - Phasik Flux\",\"isPartOf\":{\"@id\":\"https:\/\/www.lyraphase.com\/wp\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/lyraphase.com\/wp\/projects\/installing-latest-git-on-ubuntu-with-git-subtree-support\/#primaryimage\"},\"datePublished\":\"2012-10-22T21:53:42+00:00\",\"dateModified\":\"2022-03-08T09:32:31+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/lyraphase.com\/wp\/projects\/installing-latest-git-on-ubuntu-with-git-subtree-support\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/lyraphase.com\/wp\/projects\/installing-latest-git-on-ubuntu-with-git-subtree-support\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/lyraphase.com\/wp\/projects\/installing-latest-git-on-ubuntu-with-git-subtree-support\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.lyraphase.com\/wp\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Installing latest git on Ubuntu with git-subtree support\"}]},{\"@type\":\"Article\",\"@id\":\"https:\/\/lyraphase.com\/wp\/projects\/installing-latest-git-on-ubuntu-with-git-subtree-support\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/lyraphase.com\/wp\/projects\/installing-latest-git-on-ubuntu-with-git-subtree-support\/#webpage\"},\"author\":{\"@id\":\"https:\/\/www.lyraphase.com\/wp\/#\/schema\/person\/bdb31fd6bfe0e571b38c8b358367f7fd\"},\"headline\":\"Installing latest git on Ubuntu with git-subtree support\",\"datePublished\":\"2012-10-22T21:53:42+00:00\",\"dateModified\":\"2022-03-08T09:32:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/lyraphase.com\/wp\/projects\/installing-latest-git-on-ubuntu-with-git-subtree-support\/#webpage\"},\"wordCount\":306,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.lyraphase.com\/wp\/#\/schema\/person\/e39ee647a6fe0d4cadc07706d14d2e41\"},\"image\":{\"@id\":\"https:\/\/lyraphase.com\/wp\/projects\/installing-latest-git-on-ubuntu-with-git-subtree-support\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/mail.lyraphase.com\/wp\/wp-content\/uploads\/2012\/12\/PlasmaTree.png\",\"keywords\":[\"git\",\"linux\",\"programming\",\"subtree\",\"ubuntu\"],\"articleSection\":[\"Projects\",\"Software\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/lyraphase.com\/wp\/projects\/installing-latest-git-on-ubuntu-with-git-subtree-support\/#respond\"]}]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.lyraphase.com\/wp\/#\/schema\/person\/bdb31fd6bfe0e571b38c8b358367f7fd\",\"name\":\"Administrator\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/www.lyraphase.com\/wp\/#personlogo\",\"inLanguage\":\"en-US\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/833761cd202c03e01ac63c55021a4eec?s=96&r=r\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/833761cd202c03e01ac63c55021a4eec?s=96&r=r\",\"caption\":\"Administrator\"},\"sameAs\":[\"https:\/\/www.lyraphase.com\"],\"url\":\"https:\/\/mail.lyraphase.com\/wp\/author\/admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Installing latest git on Ubuntu with git-subtree support - Phasik Flux","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:\/\/lyraphase.com\/wp\/projects\/installing-latest-git-on-ubuntu-with-git-subtree-support\/","og_locale":"en_US","og_type":"article","og_title":"Installing latest git on Ubuntu with git-subtree support - Phasik Flux","og_description":"Recently I found it necessary to join two git repos together while still maintaining history &amp; future ability to split or rejoin them. \u00a0Enter the &#8216;git subtree&#8216; command. Because this command is now merged into git-core since\u00a01.7.11, we will need to install the latest git from a PPA. \u00a0Note that as of &#8216;now&#8216;, the latest [&hellip;]","og_url":"https:\/\/lyraphase.com\/wp\/projects\/installing-latest-git-on-ubuntu-with-git-subtree-support\/","og_site_name":"Phasik Flux","article_publisher":"https:\/\/fb.me\/djPhasik","article_published_time":"2012-10-22T21:53:42+00:00","article_modified_time":"2022-03-08T09:32:31+00:00","og_image":[{"width":1438,"height":632,"url":"https:\/\/lyraphase.com\/wp\/wp-content\/uploads\/2012\/12\/PlasmaTree.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_creator":"@TrinitronX","twitter_site":"@trinitronx","twitter_misc":{"Written by":"Administrator","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":["Person","Organization"],"@id":"https:\/\/www.lyraphase.com\/wp\/#\/schema\/person\/e39ee647a6fe0d4cadc07706d14d2e41","name":"DJPhasik","image":{"@type":"ImageObject","@id":"https:\/\/www.lyraphase.com\/wp\/#personlogo","inLanguage":"en-US","url":"https:\/\/secure.gravatar.com\/avatar\/edb379d5d0f55cde97ea32e0c36db1ad?s=96&r=r","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/edb379d5d0f55cde97ea32e0c36db1ad?s=96&r=r","caption":"DJPhasik"},"logo":{"@id":"https:\/\/www.lyraphase.com\/wp\/#personlogo"},"description":"An Electrical Engineer turned DJ, Producer, and Software developer from CO He's got a passion for technology and electronic music. When he\u2019s not working on electronics or software projects, he\u2019s constantly fueling his need for artistic expression through music.","sameAs":["https:\/\/www.lyraphase.com","https:\/\/fb.me\/djPhasik","https:\/\/www.instagram.com\/jamescuzella","https:\/\/pin.it\/atfqjvnuqbmt2o","https:\/\/twitter.com\/trinitronx","https:\/\/www.youtube.com\/user\/DJPhasik\/","https:\/\/soundcloud.com\/phasik"]},{"@type":"WebSite","@id":"https:\/\/www.lyraphase.com\/wp\/#website","url":"https:\/\/www.lyraphase.com\/wp\/","name":"Phasik Flux","description":"[art][music][energy][time][dimensions][consciousness][soul][spirituality][love]","publisher":{"@id":"https:\/\/www.lyraphase.com\/wp\/#\/schema\/person\/e39ee647a6fe0d4cadc07706d14d2e41"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.lyraphase.com\/wp\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"ImageObject","@id":"https:\/\/lyraphase.com\/wp\/projects\/installing-latest-git-on-ubuntu-with-git-subtree-support\/#primaryimage","inLanguage":"en-US","url":"https:\/\/mail.lyraphase.com\/wp\/wp-content\/uploads\/2012\/12\/PlasmaTree.png","contentUrl":"https:\/\/mail.lyraphase.com\/wp\/wp-content\/uploads\/2012\/12\/PlasmaTree.png","width":1438,"height":632},{"@type":"WebPage","@id":"https:\/\/lyraphase.com\/wp\/projects\/installing-latest-git-on-ubuntu-with-git-subtree-support\/#webpage","url":"https:\/\/lyraphase.com\/wp\/projects\/installing-latest-git-on-ubuntu-with-git-subtree-support\/","name":"Installing latest git on Ubuntu with git-subtree support - Phasik Flux","isPartOf":{"@id":"https:\/\/www.lyraphase.com\/wp\/#website"},"primaryImageOfPage":{"@id":"https:\/\/lyraphase.com\/wp\/projects\/installing-latest-git-on-ubuntu-with-git-subtree-support\/#primaryimage"},"datePublished":"2012-10-22T21:53:42+00:00","dateModified":"2022-03-08T09:32:31+00:00","breadcrumb":{"@id":"https:\/\/lyraphase.com\/wp\/projects\/installing-latest-git-on-ubuntu-with-git-subtree-support\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/lyraphase.com\/wp\/projects\/installing-latest-git-on-ubuntu-with-git-subtree-support\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/lyraphase.com\/wp\/projects\/installing-latest-git-on-ubuntu-with-git-subtree-support\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.lyraphase.com\/wp\/"},{"@type":"ListItem","position":2,"name":"Installing latest git on Ubuntu with git-subtree support"}]},{"@type":"Article","@id":"https:\/\/lyraphase.com\/wp\/projects\/installing-latest-git-on-ubuntu-with-git-subtree-support\/#article","isPartOf":{"@id":"https:\/\/lyraphase.com\/wp\/projects\/installing-latest-git-on-ubuntu-with-git-subtree-support\/#webpage"},"author":{"@id":"https:\/\/www.lyraphase.com\/wp\/#\/schema\/person\/bdb31fd6bfe0e571b38c8b358367f7fd"},"headline":"Installing latest git on Ubuntu with git-subtree support","datePublished":"2012-10-22T21:53:42+00:00","dateModified":"2022-03-08T09:32:31+00:00","mainEntityOfPage":{"@id":"https:\/\/lyraphase.com\/wp\/projects\/installing-latest-git-on-ubuntu-with-git-subtree-support\/#webpage"},"wordCount":306,"commentCount":0,"publisher":{"@id":"https:\/\/www.lyraphase.com\/wp\/#\/schema\/person\/e39ee647a6fe0d4cadc07706d14d2e41"},"image":{"@id":"https:\/\/lyraphase.com\/wp\/projects\/installing-latest-git-on-ubuntu-with-git-subtree-support\/#primaryimage"},"thumbnailUrl":"https:\/\/mail.lyraphase.com\/wp\/wp-content\/uploads\/2012\/12\/PlasmaTree.png","keywords":["git","linux","programming","subtree","ubuntu"],"articleSection":["Projects","Software"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/lyraphase.com\/wp\/projects\/installing-latest-git-on-ubuntu-with-git-subtree-support\/#respond"]}]},{"@type":"Person","@id":"https:\/\/www.lyraphase.com\/wp\/#\/schema\/person\/bdb31fd6bfe0e571b38c8b358367f7fd","name":"Administrator","image":{"@type":"ImageObject","@id":"https:\/\/www.lyraphase.com\/wp\/#personlogo","inLanguage":"en-US","url":"https:\/\/secure.gravatar.com\/avatar\/833761cd202c03e01ac63c55021a4eec?s=96&r=r","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/833761cd202c03e01ac63c55021a4eec?s=96&r=r","caption":"Administrator"},"sameAs":["https:\/\/www.lyraphase.com"],"url":"https:\/\/mail.lyraphase.com\/wp\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/mail.lyraphase.com\/wp\/wp-json\/wp\/v2\/posts\/223"}],"collection":[{"href":"https:\/\/mail.lyraphase.com\/wp\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/mail.lyraphase.com\/wp\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/mail.lyraphase.com\/wp\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/mail.lyraphase.com\/wp\/wp-json\/wp\/v2\/comments?post=223"}],"version-history":[{"count":5,"href":"https:\/\/mail.lyraphase.com\/wp\/wp-json\/wp\/v2\/posts\/223\/revisions"}],"predecessor-version":[{"id":4616,"href":"https:\/\/mail.lyraphase.com\/wp\/wp-json\/wp\/v2\/posts\/223\/revisions\/4616"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/mail.lyraphase.com\/wp\/wp-json\/wp\/v2\/media\/277"}],"wp:attachment":[{"href":"https:\/\/mail.lyraphase.com\/wp\/wp-json\/wp\/v2\/media?parent=223"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mail.lyraphase.com\/wp\/wp-json\/wp\/v2\/categories?post=223"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mail.lyraphase.com\/wp\/wp-json\/wp\/v2\/tags?post=223"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}