Assuming a single repo like this:
repo/
  shared_lib/
  lib_a/
  lib_b/
  lib_c/
For myself, I want a single main repo with everything. For an employee, I might only want to share the source code of shared_lib and lib_a. What is the best way to do this while allowing me to merge employee's code to the main single repo?
