3

I am planning to migrate my current local Git repository (managed by Xcode 5) to GitHub and found some tutorials on how to do this.

My questions is how can include third-party frameworks which I use with my project in GitHub. The majority of them is not GitHub based, e.g. CorePlot (Google based), Parse.com (Zip Download).

How should I add these frameworks to my GitHub based Framework?

AlexR
  • 5,514
  • 9
  • 75
  • 130
  • Poor soul using Parse... they are [shutting it down](http://blog.parse.com/announcements/moving-on/). – Jacket Feb 02 '16 at 14:59

1 Answers1

4

You can use git submodules to keep reference to other repo.

For CorePlot, which is a mercurial repo, you can use git-hg, as described in "Is there a way to use a Mercurial repository as Git submodule?".
Or... use its GitHub mirror repo for CorePlot directly as a submodule!

Community
  • 1
  • 1
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250