android - What's the benefits of using repo instead of git -
Google initiated repo to manage Android source code as stated in the document, repo means Android It's easy to work with. Why do I not see in the document from
in the document, make synonyms only with git commands in repo, then how easy is the repo to work with Android?
I agree that you have already read:
repo There is a repository management tool that we built on top of the guit. When necessary, the repo connects many GIT repositories, uploads our revision control system, and automates the part of the Android development workflow. Repo is not meant to change the guit, only in the context of Android Git's Easy to work with, the repo command is an executable python script that you can place anywhere on your own. In working with Android source files, you will use repo for the entire network operation. For example, with a single repo command you can download files from many local repositories to your local work directory.
Simply put, this is for managing many GIT repositories
This is to make the development process more modular because you develop in your own repository Can get each feature. Thus, each team can contribute to its own separate reserves. Every repository often comes together to create a large project.
Repo allows you to draw specific committed points from each GIT repository to create a collective snapshot for a larger project.
Comments
Post a Comment