I am trying to find out if it is possible to use someone else's repository (or branch of a repository) as a Submodule in your own Git repository. Documentation on github itself is either missing, or I'm not using the right terminology to look for it. If this isn't the preferred way to go about including a public repository as a shared library within ones git project, suggestions as an alternative best practice would be appreciated.
1 Answer 1
Yes, you can add any repository as a submodule in your project. Just do:
git submodule add git://github.com/whomsoever/whatever.git
... in the top level of your repository. This is indeed the easiest way with git to use some existing useful repository within your own. For more information on submodules, you could look at:
- Pro Git's section on submodules
- The quite readable bit in the git manual
- The section on submodules in the git community book
Update: as jfountain points out below, if you want to add the submodule at a subdirectory path (or with a name different from the default) you can supply that as an additional parameter to that command, e.g.:
git submodule add git://github.com/whomsoever/whatever.git foo/bar
-
1Does this still work if the submodule is not hosted on GitHub, but your repo is?ch3rryc0ke– ch3rryc0ke2012年08月01日 18:57:45 +00:00Commented Aug 1, 2012 at 18:57
-
3@ch3rryc0ke: yes - if you can clone the URL for a repository, you can add it as a submodule.Mark Longair– Mark Longair2012年08月02日 08:03:01 +00:00Commented Aug 2, 2012 at 8:03
-
1To clone into a subdirectory use git submodule add git://github.com/whomsoever/whatever.git subdirectory/whateverjfountain– jfountain2014年01月06日 21:58:37 +00:00Commented Jan 6, 2014 at 21:58
-
1@GreatBlakes you will need to do a sparse-checkoutserver_kitten– server_kitten2015年01月16日 13:30:22 +00:00Commented Jan 16, 2015 at 13:30
-
2@DavidDouglas It seems that the zip file you get from "Download ZIP" doesn't contain the contents of submodules, I'm afraid.Mark Longair– Mark Longair2016年04月07日 13:47:27 +00:00Commented Apr 7, 2016 at 13:47
Explore related questions
See similar questions with these tags.