Repo every project under each directory has a git repository that can execute GIT commands under each directory's Git repository.
One, from the server clone code
1, initialize repo warehouse
# repo Init-u http://xxx/xxx_Manifest
2, Sync code
# repo Sync-j8
3, You must open your own branch (note: Not necessarily master, but also Ken can be another name (dev). Git branch-a)
# repo start master--all
II, Repo/git submit code to server
1, Commit Code
# Repo Branch
# git add test.txt
# Repo status
2, commit comment
# git commit-m "add Test.txt"
3, mention Submit to remote server
<1> single commit (git commit-s: Bring up Submission box)
# Cat. Git/config //remote = Android; merge = TEST
# git Push Android head:refs/for/test
equivalent to # git push master head:refs/for/master
<2> commit all (equivalent to putting git in each directory Commit once and push)
# repo upload