« VLC pre-alpha for Android 2.1 – Jan 2, 2012 | Home | Android codec benchmarks »
Deepen an existing shallow clone with git
By admin | January 31, 2012
In git, the new revolutionary DVCS system, to shallow clone a repository means to check out only the latest snapshot of a git repository, unlike a normal clone which pulls the entire repository. A shallow git repository can save bandwidth and take up less space.
git clone --depth=1 git://repo.example.com/mycoolapp
However, let’s say that once you checkout the project, compile it and decide that you want to contribute to it, then a shallow clone would probably not suffice. In this case, one can deepen the repository by using the following command inside the git repository, where n = number of revisions to deepen to:
git fetch --depth=n origin master
Saves more than having to re-clone everything from scratch and lose your working tree.
If you found this article helpful or interesting, please help Compdigitec spread the word. Don’t forget to subscribe to Compdigitec Labs for more useful and interesting articles!
Topics: Linux | 8 Comments »
July 4th, 2024 at 18:57
… [Trackback]
[…] Read More on that Topic: compdigitec.com/labs/2012/01/31/deepen-an-existing-shallow-clone-with-git/ […]
July 6th, 2024 at 21:50
… [Trackback]
[…] Find More here to that Topic: compdigitec.com/labs/2012/01/31/deepen-an-existing-shallow-clone-with-git/ […]
July 7th, 2024 at 19:56
… [Trackback]
[…] Here you can find 37981 more Info on that Topic: compdigitec.com/labs/2012/01/31/deepen-an-existing-shallow-clone-with-git/ […]
July 25th, 2024 at 05:49
… [Trackback]
[…] Find More on that Topic: compdigitec.com/labs/2012/01/31/deepen-an-existing-shallow-clone-with-git/ […]
August 24th, 2024 at 00:31
… [Trackback]
[…] Here you can find 3732 more Information to that Topic: compdigitec.com/labs/2012/01/31/deepen-an-existing-shallow-clone-with-git/ […]
August 31st, 2024 at 01:12
… [Trackback]
[…] Here you can find 42079 additional Information on that Topic: compdigitec.com/labs/2012/01/31/deepen-an-existing-shallow-clone-with-git/ […]
September 14th, 2024 at 01:02
… [Trackback]
[…] Read More Info here to that Topic: compdigitec.com/labs/2012/01/31/deepen-an-existing-shallow-clone-with-git/ […]
September 17th, 2024 at 00:03
… [Trackback]
[…] Find More here to that Topic: compdigitec.com/labs/2012/01/31/deepen-an-existing-shallow-clone-with-git/ […]