|
|
|
|
|
by comex
694 days ago
|
|
If it just clones the repos and removes the .git directories, then I assume it doesn't keep their commit history? So if you use e.g. `git blame` or `git log` to look at file history, you will see when changes were introduced to the parent repo, but not when/why those changes were made in the first place. In that respect, it resembles git-subtree with --squash, but differs from git-submodule or regular git-subtree. |
|
Cool info though, thanks for sharing!