Synchronize (the contents of) a repository with a local directory. Can be used to manually update "embedded" repositories (aka subtree's).
Does not touch the host repository's stage or history. You have to add and commit the changed files manually. Write a good commit message and have a clean history.
Simply put git-embed somewhere in your path.
usage: git embed add <repository>
or: git embed update <directory>
$ git embed add https://github.com/you/project.git
Copy the contents of https://github.com/you/project.git into the local folder project.
$ git embed update project
Updates the local folder project with the contents of the (previously added) remote repository https://github.com/you/project.git.