This is a follow up question on "Forking a sub directory of a repository on GitHub and making it part of my own repo". What I want is to make a collection of sub directories from a few different upstreams.
I see the fist command is git clone in the answer above, which makes forking from several different upstreams difficult.
So, is it possible? You can answer hypothetically, or use the following concrete examples:
Collect in to my repo under the MyPythonCol folder, of
- The
lessonssub directory from https://bitbucket.org/hrojas/learn-pandas/src - The
docssub directory from https://bitbucket.org/jblawatt/python-simple-di/src
Basically I just want to track the remote repo, with no intention to patch upstream.
Thanks