Class-based Day7- development of preliminary work

First, work today

  1. Creating a connection between the local warehouse and Github repository, Git learn the various commands, including:

    • View branch:$ git branch

    • Create a branch:$ git branch <branch name>

    • Switching branches:$ git checkout <branch name>

    • Create and switch branches:$ gir checkout -b <branch name>

    • Deleted branches:$ git branch -d <branch name>

    • Merge branch to the current branch $ git merge <branch name>

  2. Branching strategy

    • masterBranch to branch is released

    • devBranches are used to develop the branch

    • user1``user2Branch is built on deva branch on a branch each teammate development, consolidation in devthe branch on

Second, work tomorrow

Android development started tomorrow, first of all from the first primary interface prototyping transplant. Android is more important is learning mechanism.

Third, sum up today

Today, Git deployment of a major study, to lay the foundation for the next team. Planning and preliminary work is very important.

Guess you like

Origin www.cnblogs.com/coegle18/p/11409160.html